Codes
"hello {}".format(name) f"hello {name}" print ("hello python")
n = "your name" "Hello" + x
loops
for x in range(10):
print ("hello python") print (x)
x = 1 while x<10:
print (f"x is {x}") x = x + 1
"hello {}".format(name) f"hello {name}" print ("hello python")
n = "your name" "Hello" + x
loops
for x in range(10):
print ("hello python") print (x)
x = 1 while x<10:
print (f"x is {x}") x = x + 1