
Tech Tutorials Hub
June 12, 2025 at 08:07 PM
🛑 Rules of Python (VERY IMPORTANT)
✅ Do:
Use lowercase for commands: print, not Print
Use quotes for text: "Hello" or 'Hello'
Use round brackets () for function calls
❌ Don't:
Forget quotes around text: print(Hello) ❌
Use capital letters randomly: Print("Hi") ❌
Miss a bracket: print("Hi" ❌
❤️
2