0% found this document useful (0 votes)
28 views2 pages

Basic Python Notes Hinglish-1

Python is a high-level, easy-to-read programming language ideal for beginners. It covers installation, basic programming concepts like variables, data types, input/output, conditions, loops, functions, lists, tuples, and dictionaries. Overall, Python is presented as a simple yet powerful option for a career in programming.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views2 pages

Basic Python Notes Hinglish-1

Python is a high-level, easy-to-read programming language ideal for beginners. It covers installation, basic programming concepts like variables, data types, input/output, conditions, loops, functions, lists, tuples, and dictionaries. Overall, Python is presented as a simple yet powerful option for a career in programming.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Basic Python Notes (Hinglish)

1. Python Kya Hai?

Python ek high-level, easy-to-read programming language hai. Beginners ke liye best hai.

2. Python Install Kaise Karein?

Python official website se download hota hai. Windows, Mac, Linux sab support karta hai.

3. First Python Program

print("Hello World")

4. Variables

Variable data store karne ke liye hota hai.

x = 10

name = "Saify"

5. Data Types

int – number (10)

float – decimal (10.5)

str – text ("Hello")

bool – True / False

6. Input & Output

name = input("Apna naam daalo: ")

print(name)

7. Conditions (if-else)

if age > 18:

print("Adult")

else:

print("Minor")

8. Loops

for i in range(5):
print(i)

9. Functions

def greet():

print("Hello")

10. Lists

numbers = [1,2,3,4]

11. Tuples

data = (1,2,3)

12. Dictionaries

student = {"name":"Saify","age":25}

13. Comments

# Ye comment hai

14. Conclusion

Python simple hai, powerful hai, aur career ke liye best option hai.

You might also like