user51585
0
Q:

print function python

print("hello world")
0
#a string, to indicate it is a string you can use ("") or ('')
print("hello world")
#a integer 
print(19)
# a float:
print(4.5)
6
'''
print()inside the parentheses put a single colon or double colon 
'''
# example like this
print("this how you use print statement")
# or like this
print('other way to print in python')
3
# 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}!")
2
'''
print - > this is a statement
use brackets and quotation marks ("") or ('')
whatever you want to say put in the brackets
'''
print("Hello World")
4
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))
1
print("The text you want")
1
words = 'Hello', 'World', 'Python', 'makes', 'life', 'easier'
print(*words, sep='\n')
1
# the print commmand will write anything in your out put box
print("hello world")
0

New to Communities?

Join the community