Answers for "print using python"

16

print() in python

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

print in python

# Simple Print:
print("Hello World!")

# Formatting message in python3.6- :
name = "World"
print("Hello {}!".format(name))

# Formatting message in python3.7+ :
name = "World"
print(f"Hello {name}!")
Posted by: Guest on October-04-2020
0

print in python

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

how to print something in python

print("dog")
Posted by: Guest on September-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language