Coding/Python Matlab

파이썬 - python 2.7 print function usage

smores 2012. 10. 10. 01:40
from __future__ import print_function
# above should be in the very beginning of the program
# print(*objects, sep=' ', end='\n', file=sys.stdout)
print("Pink", "dfd", sep='>>', end=' ')
print("Octopus")
exit()