Posts

Showing posts with the label free course

Python Sikhein - Basic se Advanced

Python Sikhein - Basic se Advanced Python Sikhein - Basic se Advanced Is tutorial me hum Python programming ke basic se lekar advanced topics tak cover karenge. 1. Python Introduction Python ek high-level, interpreted programming language hai jo simple syntax aur readability ke liye famous hai. 2. Python Install Karna Python install karne ke liye aap official website se download kar sakte hain. 3. Hello World Program print("Hello, World!") 4. Variables aur Data Types x = 10 # Integer y = 3.14 # Float name = "Python" # String is_active = True # Boolean 5. Conditional Statements x = 10 if x > 5: print("x bada hai 5 se") elif x == 5: print("x barabar hai 5 ke") else: print("x chhota hai 5 se") 6. Loops (for aur while) # For loop for i in range(5): print(i) # While loop x = 0 while x ...