Answers for "how to outoutp pythopn"

0

how to outoutp pythopn

# how to out put in Python

print("Hello World!") # using double quotes

print('Hello World!') # using single quotes

# no using a double quote and a single quote, or there shall be an error!

# to print variables:

# declaring variable:
name = "Bob"

print(name) # output: Bob
Posted by: Guest on January-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language