1#('') a string, to indicate it is a string you can use ("") or ('')
2print("hello world")
3#a integer
4print(19)
5# a float:
6print(4.5)
7# a bool:
8print (True)
9print (False)
1print(object1, object2, object3, ..., sep=' ', end='\n', file=sys.stdout, flush=False)