python same instruction different outputs error code example
Example 1: how to make a function like print in python
#Print
print('This is a print function')
Example 2: python printing
Print("Hello") Print("World") #Output: Hello World!
print(5+5) # Output:10
x=10
y=11
print(x+y) #Output: 21