Answers for "print %"

5

How print ?

#def test
print("Hello, world!") #for text
print(test) #for variable
print("Hello,", test) # for text + variable
Posted by: Guest on February-17-2021
6

print

# This is a print statement in Python
print("Hello, world!")
Posted by: Guest on April-18-2020
2

print

print("Hello World") # prints hello world to the screen (python)
Posted by: Guest on June-21-2020
0

print()

The print() function will print out whatever you want.
The print will go to the output.
Posted by: Guest on January-30-2021
1

print

print('Hello world') # This would print 'Hello world' as an output to the user.
Posted by: Guest on June-23-2020
0

print

print('hi')
Posted by: Guest on January-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language