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
1# Simple Print:
2print("Hello World!")
3
4# Formatting message in python3.6- :
5name = "World"
6print("Hello {}!".format(name))
7
8# Formatting message in python3.7+ :
9name = "World"
10print(f"Hello {name}!")
1# You can use ' or "
2
3# Print a text string in JavaScript
4print('My text')
5
6# Print a variable in JavaScript
7my_variable = str('Text')
8print(my_variable)
9
10# Print a number in JavaScript
11print(123)
1#making a print statement:
2print('your text')
3# you should now see'your text' in the terminal
1print('hello world') #print can write a string a number or a variable
2
3#for example you can 'print' a number
4print(1) #if you want to print a number you can print it without '' or ""
5
6#we can print a variable
7string = 'hi'
8print(string) #if you want to print a variable you can print it without '' or ""