I am new to Python and i want to display this message in the console:
'print("Hello")'
How can we obtain that? is it necessary to do some magic behind?
we can do this:
print("'print('hello')'")
but the output is this:
'print('hello')'
I am new to Python and i want to display this message in the console:
'print("Hello")'
How can we obtain that? is it necessary to do some magic behind?
we can do this:
print("'print('hello')'")
but the output is this:
'print('hello')'