Print in python



Print function is used to print the statement that we have given in the bracket.








Example
print("mycrazycoding")


Output



mycrazycoding







Example
n = 10

print(n)


Output



10








Example
m = 2020

print("mycrazycoding",m)


Output



mycrazycoding 2020







Example
print("mycrazycoding",end=" ")

print("mycrazycoding")


Output



mycrazycoding mycrazycoding