Recently I was trying some practice programs in python and I came across this small problem.
when I typed
print ""
in IDLE, the python shell printed a null character.
If I typed
print """"""
in IDLE, the python shell printed a null character.
but the python shell is waits for an input if I type
print """"
Why is this behaviour observed. As far as my knowledge goes, it should print null character for this print """"
also.