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
No responses yet.