All the Python Basics you need to Build a project | Python tutorial for beginners | 2024

preview_player
Показать описание
This video has it all you need to start your coding journey on #python . I cover the fundamentals of Python, providing a solid foundation for anyone through each concept in a simple manner.

📚 Resources:

Questions for Quiz Project :
```python
# 5 questions
questions=[
"Which city is known as the 'Taj Mahal of the South' in India?",
"What is the national bird of India?",
"What is the national flower of India?",
"The Indus Valley Civilization, one of the earliest civilizations in the world, flourished along the banks of which rivers?",
"Which Indian classical dance form is known for its graceful movements and storytelling through hand gestures?"
]

quiz={
"Which city is known as the 'Taj Mahal of the South' in India?":{
"options":["Chennai","Mysore","Trivandrum"],
"answer":2
},
"What is the national bird of India?":{
"options":["Owl","Cuckoo","Peacock"],
"answer":3
},
"What is the national flower of India?":{
"options":["Lotus","Rose","Marigold"],
"answer":1
},
"The Indus Valley Civilization, one of the earliest civilizations in the world, flourished along the banks of which rivers?":{
"options":["Ganges and Yamuna","Godavari and Krishna","Narmada and Tapti"],
"answer":1
},
"Which Indian classical dance form is known for its graceful movements and storytelling through hand gestures?":{
"options":["Kathak","Odissi","Bharatanatyam"],
"answer":3
}
}
```

# ⏰ Timestamps

## Day 1 : Hello World , Variables & Numeric data operations

04:00 Google Collab
04:14 Hello World
05:23 Variables
07:00 Need Of Variables
15:36 Data Types
16:42 Integer , Float
18:55 Basic Numeric Operations
21:20 Modulus & Exponent ( $3^3$ & $\sqrt(3)$ )
28:35 Math Libraries
---

## Day 2 : If Else & Strings
00:33:53 If Else Elif & Comparison operations
00:37:29 Difference between = & ==
00:50:23 Strings
00:53:39 len()
00:54:46 Count number of words in a sentence
00:58:08 Trim spaces
00:59:27 Chaining methods
01:00:34 What are methods
01:03:02 Replace
01:04:36 Strings are immutable
01:08:22 Concatenation : Formatting , String Interpolation & F strings
01:12:12 Slicing & Indexing
01:21:40 Program : find the email’s domain address
01:27:44 More on string methods

---

## Day 3 : Loops

01:28:46 Membership functions
01:31:23 Repeat Strings
01:34:10 While Loop
01:38:03 Indentation Error
01:43:06 Break statement
01:47:15 For Loop
01:48:02 Range function
01:50:36 For Else Loop
01:53:44 Range Steps
01:56:15 String Reverse
01:57:43 Nested For Loop
02:01:59 Pattern Program
---

## Day 4 : List , Tuples & Dictionaries
02:07:24 User Input
02:11:37 Type Conversion
02:13:56 input split
02:19:24 Lists
02:23:14 Lists Append , insert & extend
02:26:37 List Pop , Remove & Del
02:30:09 List Comprehension
02:32:35 Program : Todo List
02:46:54 List Methods
02:47:54 Tuple & its Methods
02:54:29 List vs Tuple
02:58:29 Dictionary
03:00:12 Dictionary vs List & Tuple
03:09:54 Program : Students DB with dictionaries
---

## Day 5 : Functions, Exception Handling & External Libraries

03:17:55 Functions
03:25:11 Parameters vs Arguments
03:27:59 Void Functions & Return
03:32:31 Global & Local variables
03:35:02 Docstring & pass
03:37:15 Program : Sum of digits
03:43:21 Keyword arguments
03:47:13 Lambda
03:49:13 Recursion
03:56:02 Exception Handling
04:06:56 External Libraries & modules
---

## Day 6 : Quiz Project
04:11:20 Quiz Project

*PLEASE NOTE:
PLEASE TAKE DECISIONS BASED ON YOUR RESEARCH AND WHAT YOU FEEL RIGHT
I'M JUST SHARING MY OWN RESEARCH THROUGH THIS VIDEO !!
AND THIS VIDEO DOES NOT FORCE YOU ANYTHING BY ANY MEANS!! *
Рекомендации по теме
Комментарии
Автор

Nest Steps :
1. Pick a domain (example : Data Science, AI/ML, Web Development)
2. Start learning that domain in depth

This way You can learn more about python & that domain at the same time & keep progressing more & more.

abhikb
Автор

See brother...if you explain in very easy terms then ill definitely subscribe and share your work 😅

Sonu_kumaRRR