Answers for "print."

3

python print

# Rainy Day
wet = 'umbrella'
print(wet)
# Sunny Day
hot = 'sunglasses'
print(hot)
Posted by: Guest on October-02-2020
1

print python

#FR
str_one = "Hello, "
str_two = "world !"

print(str_one + str_two)
Posted by: Guest on January-10-2021
0

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 ""
Posted by: Guest on July-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language