print in python
print("Hello World")
print in python
print("Hey! How are you doing?")
## formatted string literal
answer = "Well!"
print(f"Hey! How are you doing? {answer}")
print in python
# 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}!")
print in python
#('') a string, to indicate it is a string you can use ("") or ('')
print("hello world")
#a integer
print(19)
# a float:
print(4.5)
# a bool:
print (True)
print (False)
print in python
# the print commmand will write anything in your out put box
print("hello world")
print in python
words = 'Hello', 'World', 'Python', 'makes', 'life', 'easier'
print(*words, sep='\n')
print in python
# This prints out the value provided by the user
print("Hello World\n")
print in python
print("Text") # Prints Text
a = 54
print(a) # Prints 54
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us