Answers for "print a function python"

16

print() in python

print('hi, baby!')
Posted by: Guest on January-02-2021
1

what is print in python

A print funtion is a way to print data in the console
use:
print("Hello World")
x = "Hello World"
print(x)
x = 5 + 5
print(str(x))
Posted by: Guest on August-26-2020
3

how to print in python

#('') a string, to indicate it is a string you can use ("") or ('')
print("hello world")
#a integer 
print(19)
# a float:
print(4.5)
# a bool:
print (True)
print (False)
Posted by: Guest on December-10-2020
0

how to print in python

#printing inputs
print(input("whatever u want to say "))
#or u can use preloaded inputs
input_value=input("whatever u want to say ")
print(input_value)
Posted by: Guest on February-05-2021
0

print in python

a = 5
print('The value of a is', a)
Posted by: Guest on January-08-2021
0

python print

print("Hello, world")
#Output:
#Hello, world
Posted by: Guest on July-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language