Answers for "print en python"

0

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
Posted by: Guest on September-17-2020
0

print python

#this is how to print
print("I am getting printed")
Posted by: Guest on March-30-2021
1

print python

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

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

Python Answers by Framework

Browse Popular Code Answers by Language