NP3 格式化输出(一)

思路:

step1:将输入赋值给name,再用format方法格式化输出即可;

代码如下:

name = input()
print('I am {} and I am studying Python in Nowcoder!'.format(name))