name = input('') age = 18 print(f'I am {name} and I am studying Python in Nowcoder!') # print(f'I am {name} ,age is {age} and I am studying Python in Nowcoder!') # print('I am {},age is {} and I am studying Python in Nowcoder!'.format(name,age)) # print('I am %s ,age is %d and I am studying Python i...