Skip to content

Commit f0106cc

Browse files
Merge pull request #10 from PavanMudigonda/dev-1
Dev 1
2 parents d855adf + 5392e3b commit f0106cc

File tree

265 files changed

+2863
-1147
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

265 files changed

+2863
-1147
lines changed

1-print/README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
# Chapter 1: Print Statement
22

3-
4-
## 📺 Video Tutorial
5-
6-
[![Watch on YouTube](https://img.shields.io/badge/Watch-BroCode_Python_Master_Class-red?style=for-the-badge&logo=youtube)](https://youtu.be/Sg4GMVMdOPo)
7-
8-
93
## 📺 Video Tutorial
104

11-
[![Watch on YouTube](https://img.shields.io/badge/Watch-BroCode_Python_Master_Class-red?style=for-the-badge&logo=youtube)](https://youtu.be/Sg4GMVMdOPo)
5+
**Start coding with PYTHON in 5 minutes! 🐍** (5:13)
126

13-
## � Video Tutorial
14-
15-
[![Watch on YouTube](https://img.shields.io/badge/Watch-Chapter_1-red?style=for-the-badge&logo=youtube)](https://youtu.be/N4mEzFDjqtA)
7+
[![Watch on YouTube](https://img.shields.io/badge/Watch-YouTube-red?style=for-the-badge&logo=youtube)](https://youtu.be/Sg4GMVMdOPo)
168

179
## �📚 What You'll Learn
1810
In this chapter, you'll learn about the `print()` function, which is your first step in Python programming!
@@ -72,5 +64,16 @@ Comments are lines that Python ignores. They help explain your code:
7264
print("This is code") # This is also a comment
7365
```
7466

67+
## 🎓 Key Takeaways from Video
68+
69+
1. Download Python interpreter from python.org
70+
2. Install an IDE (PyCharm or VS Code) for writing Python code
71+
3. Add Python to PATH during installation (Windows)
72+
4. Create a new Python project and file
73+
5. Lists store multiple items in a single variable
74+
75+
> 💡 *These points cover the main concepts from the video tutorial to help reinforce your learning.*
76+
7577
## 🔗 Next Chapter
7678
Continue to [Chapter 2: Variables](../2-variables/) to learn about storing data!
79+
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Chapter 11: Logical Operators
22

3-
43
## 📺 Video Tutorial
54

6-
[![Watch on YouTube](https://img.shields.io/badge/Watch-BroCode_Python_Master_Class-red?style=for-the-badge&logo=youtube)](https://youtu.be/TYyKQBC4bwE)
5+
**Logical operators in Python are easy 🔣** (7:56)
76

7+
[![Watch on YouTube](https://img.shields.io/badge/Watch-YouTube-red?style=for-the-badge&logo=youtube)](https://youtu.be/W7luvtXeQTA)
88

99
## 📺 Video Tutorial
1010

@@ -212,5 +212,14 @@ else:
212212
3. **Flight Booking**: Available if (seats > 0) and (has_passport or is_domestic)
213213
4. **Game Level Unlock**: Unlock if (score >= 1000 and level >= 5) or has_premium
214214

215+
## 🎓 Key Takeaways from Video
216+
217+
1. Conditionals execute code based on conditions
218+
2. Use if-elif-else for conditional logic
219+
3. Follow along with the video for hands-on practice
220+
221+
> 💡 *These points cover the main concepts from the video tutorial to help reinforce your learning.*
222+
215223
## 🔗 Next Chapter
216224
Continue to [Chapter 12: Conditional Expressions](../12-conditional/) to learn shorthand if-else statements!
225+
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Chapter 12: Conditional Expressions (Ternary Operator)
22

3-
43
## 📺 Video Tutorial
54

6-
[![Watch on YouTube](https://img.shields.io/badge/Watch-BroCode_Python_Master_Class-red?style=for-the-badge&logo=youtube)](https://youtu.be/tb6EYiHtcXU)
5+
**Learn conditional expressions in 5 minutes! ❓** (5:21)
76

7+
[![Watch on YouTube](https://img.shields.io/badge/Watch-YouTube-red?style=for-the-badge&logo=youtube)](https://youtu.be/TYyKQBC4bwE)
88

99
## 📺 Video Tutorial
1010

@@ -149,5 +149,14 @@ print(f"Your badge: {badge}")
149149
4. Create BMI category determiner
150150
5. Build a simple voting eligibility checker
151151

152+
## 🎓 Key Takeaways from Video
153+
154+
1. Variables store data values that can be reused
155+
2. Use if-elif-else for conditional logic
156+
3. Follow along with the video for hands-on practice
157+
158+
> 💡 *These points cover the main concepts from the video tutorial to help reinforce your learning.*
159+
152160
## 🔗 Next Chapter
153161
Continue to [Chapter 13: String Methods](../13-string/) to explore string manipulation techniques!
162+
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Chapter 13: String Methods
22

3-
43
## 📺 Video Tutorial
54

6-
[![Watch on YouTube](https://img.shields.io/badge/Watch-BroCode_Python_Master_Class-red?style=for-the-badge&logo=youtube)](https://youtu.be/7pXf1DUuaIo)
5+
**String methods in Python are easy! 〰️** (12:14)
76

7+
[![Watch on YouTube](https://img.shields.io/badge/Watch-YouTube-red?style=for-the-badge&logo=youtube)](https://youtu.be/tb6EYiHtcXU)
88

99
## 📺 Video Tutorial
1010

@@ -161,5 +161,14 @@ else:
161161
4. **Acronym Generator**: Create acronyms from phrases (e.g., "For Your Information" → "FYI")
162162
5. **Text Reverser**: Reverse words and sentences in different ways
163163

164+
## 🎓 Key Takeaways from Video
165+
166+
1. Strings are text data enclosed in quotes
167+
2. Define functions using the def keyword
168+
3. Use if-elif-else for conditional logic
169+
170+
> 💡 *These points cover the main concepts from the video tutorial to help reinforce your learning.*
171+
164172
## 🔗 Next Chapter
165173
Continue to [Chapter 14: Indexing](../14-index/) to learn how to access individual characters!
174+
Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Chapter 14: String Indexing and Slicing
22

3-
43
## 📺 Video Tutorial
54

6-
[![Watch on YouTube](https://img.shields.io/badge/Watch-BroCode_Python_Master_Class-red?style=for-the-badge&logo=youtube)](https://youtu.be/6MAufQ6vGtI)
5+
**String indexing in Python is easy ✂️** (6:17)
76

7+
[![Watch on YouTube](https://img.shields.io/badge/Watch-YouTube-red?style=for-the-badge&logo=youtube)](https://youtu.be/7pXf1DUuaIo)
88

99
## 📺 Video Tutorial
1010

@@ -173,5 +173,14 @@ extension = filename[filename.rfind('.')+1:]
173173
print(extension) # "pdf"
174174
```
175175

176+
## 🎓 Key Takeaways from Video
177+
178+
1. Strings are text data enclosed in quotes
179+
2. Follow along with the video for hands-on practice
180+
3. Experiment with the code examples to deepen understanding
181+
182+
> 💡 *These points cover the main concepts from the video tutorial to help reinforce your learning.*
183+
176184
## 🔗 Next Chapter
177185
Continue to [Chapter 15: Format Specifiers](../15-format/) to learn advanced string formatting!
186+

0 commit comments

Comments
 (0)