Computer Science - Text-Based Programming - Python - Introduction to Python syntax - Fix the Python Errors
Find and fix syntax errors. P1: 'Print("Hello")' → Error: Python is case-sensitive! Fix: ___ ('print' with lowercase p). P2: 'print(Hello)' → Error: missing quotes around string! Fix: print(___) ('"Hello"'). P3: 'name = input("Name: ") \\n print "Hi " + name' → Error: print needs ___! (parentheses).