Answers for "print([]) in 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

Python Answers by Framework

Browse Popular Code Answers by Language