execute code in print python code example
Example 1: print 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}!")
Example 2: print in python
# Print statements in python
# A usual print() statement looks like this:
print("Hello from the print statement!")
# A print statement starts with print( , as it is a built-in function
# It contains any given value that can be printed to the console. (ex. "Hello!")
# It ends with a closed bracket
# A few more examples:
name = input("Enter a name :\n") # asks for a name
print(f"Your name is {name}") # Your name is <whatever name you entered>
print(1 + 2) # 3
print(not True and not False) # False