Answers for "use of print function in puthnon"

2

how to use print in python

string_to_print = "Hello World"
print(string_to_print)
Posted by: Guest on September-19-2020
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

Code answers related to "use of print function in puthnon"

Python Answers by Framework

Browse Popular Code Answers by Language