Q:

how to print in pyhton

print("hello world")
0
print("Hello World")
-1
#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
print("Write in here whatsoever you want to print")
1
# 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
print("The text you want")
1
words = 'Hello', 'World', 'Python', 'makes', 'life', 'easier'
print(*words, sep='\n')
1

Tags

New to Communities?

Join the community