1#Normal:#
2print("Hiya Grepper!") #Output: Hiya Grepper!#
3#As Equation:#
4print(1+1) #Output: 2#
5#With String Variables:#
6x = 'Pog'
7print(x + 'Champ') #Output: PogChamp#
8#With Integer Variables:#
9y = 9999
10z = str(y)
11print('You have ' + z + ' IQ') #Output: You have 9999 IQ#
12#NOTE: Not converting the int variable to a str variable will return an error#
1#try it :)
2print("Hello, world!")
3
4#or
5
6#you can print variable
7name = "Harry"
8print(name)
9
10
11name = "Harry";print(name) #all on the same line