Python3 自学笔记01 输入输出

#输出字符串
print ('hello python3!')

#输入字符串
c = input('\n 按键enter后退出输入')
print('输入的c为'+c)

猜你喜欢

转载自blog.csdn.net/wuqian2013/article/details/80268429