Cetak ular sanca
print("if you are new in python, do not give up!")
Faithful Fowl
print("if you are new in python, do not give up!")
#this is how to print
print("I am getting printed")
# 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)
x=str("Hello ")
y=str("world ")
print(x+y)
print(y+x)
z=int(40)
print("z="y)
#making a print statement:
print('your text')
# you should now see'your text' in the terminal
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 ""
#FR
str_one = "Hello, "
str_two = "world !"
print(str_one + str_two)