Python Notes
Python Notes
1. Introduction to Python:
• Widely used for web development, data analysis, artificial intelligence, automation, and
scientific computing.
2. Python Basics:
• Python uses indentation to define code blocks instead of curly braces {}.
3. Control Flow:
if x > 5:
for i in range(5):
print(i)
4. Functions:
def greet(name):
5. Python Libraries: