Computer Science, asked by varnan2007, 8 hours ago

correct this program[PYTHON] computer

Print(Hello)
Print ("World")
Print (Hello+World);

Answers

Answered by viral61
0

Answer:

;

remove this then the program is right

Answered by atrs7391
2

Corrected program:

print("Hello")

print("World")

print("Hello" + "World")

Similar questions