Answers for "syntax of print in python"

16

print() in python

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

python print

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

how to print in python

'''
print - > this is a statement
use brackets and quotation marks ("") or ('')
whatever you want to say put in the brackets
'''
print("Hello World")
Posted by: Guest on May-05-2020

Python Answers by Framework

Browse Popular Code Answers by Language