The different ways to print in python which I use.
The normal print statement.
value = 100
print(value)
# output
# 100
Using the Format keyword inside the print statement
name = "Kalidas"
age = 21
print("Name of Student: {}\nAge of Student: {}".format(name,age))
'''
Output
Name of Student: Kali...
codeverses.hashnode.dev1 min read