python print :3 code example
Example 1: print in python
# the print commmand will write anything in your out put box
print("hello world")
Example 2: print python 3
a = 3
print(a)
# the print commmand will write anything in your out put box
print("hello world")
a = 3
print(a)