Home > Software design >  Python print hello not showing output on eclipse console
Python print hello not showing output on eclipse console

Time:09-18

new windows user using eclipse as you can see on output console not showing hello output please advise. enter image description here

CodePudding user response:

'''
Created on Sep 17, 2022

@author: Alvin Chong

'''

print('hello')

Close the multi-line command with '''

CodePudding user response:

You wrapped your code inside multiline text, just add another ''' before your print()

CodePudding user response:

Hey in the 1st line of your code, you have used a comment line ''' you have opened it but did not close anywhere. just close it before line 6 and it should work.

  • Related