Answers for "how to print function"

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
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 statement in python

#for print statements :

print(12345677890) # Integers
print(1234.567890) # Floats
print("hello") # Strings
     or
print('hello')

print(False) # Boolean
Posted by: Guest on November-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language