Respuesta :

tonb

Answer:

corrected code:

NAME="REHMAAN"  

print ("hello")  

print ("HI")

Explanation:

  • In python, put every statement on its own line. Even indentation matters.
  • PRINT should be in lowercase, i.e., print
  • The string quotes should be both " or both ', but not a mix like in "hello'
Q&A Education