print python
print('Hello, world!')
print python
#try it :)
print("Hello, world!")
#or
#you can print variable
name = "Harry"
print(name)
name = "Harry";print(name) #all on the same line
print python
# Simple Print:
print("Hello World!")
# Formatting message in python3.6- :
name = "World"
print("Hello {}!".format(name))
# Formatting message in python3.7+ :
name = "World"
print(f"Hello {name}!")
print python
x=str("Hello ")
y=str("world ")
print(x+y)
print(y+x)
z=int(40)
print("z="y)
print python
#this is how to print
print("I am getting printed")
print python
# You can use ' or "
# Print a text string in JavaScript
print('My text')
# Print a variable in JavaScript
my_variable = str('Text')
print(my_variable)
# Print a number in JavaScript
print(123)
print python
#FR
str_one = "Hello, "
str_two = "world !"
print(str_one + str_two)
print python
print('hello world') #print can write a string a number or a variable
#for example you can 'print' a number
print(1) #if you want to print a number you can print it without '' or ""
#we can print a variable
string = 'hi'
print(string) #if you want to print a variable you can print it without '' or ""
print python
#making a print statement:
print('your text')
# you should now see'your text' in the terminal
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us