Python print hello not showing output on eclipse console

Question:

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

Asked By: Alvin Ch

||

Answers:

'''
Created on Sep 17, 2022

@author: Alvin Chong

'''

print('hello')

Close the multi-line command with '''

Answered By: SANJEEV RAVI

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

Answered By: pew

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.

Answered By: bella_pa
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.