print('enter your name') name = input("name : ") # There are three ways to do this #print('your name is {0}'.format(name)) #print('your name is %s' % (name)) print(f"your name is {name}")