用字符串拼接方法输出,格式:2020年09月16日,这是如何运用Python实现的
print('{0:}年{1:}月{2:}日'.format('2020', '09', '16'))
或者
print('2020' + '年' + '09' + '月' + '16' + '日')