首页 > 编程语言 > 详细

Python用户终端输入

时间:2018-09-24 23:45:21      阅读:181      评论:0      收藏:0      [点我收藏+]
#用户输入,操作
print("python 用户输入操作")

# input(提示字符串),函数阻塞程序,并提醒用户输入字符串
instr = input("please input the string: ")
print("input >> " + instr)

# 将输入的字符串转化成整数  int(str)
print("input to int >> " + str(int(instr)))

# 练习,输入字符串为exit时才退出用户输入

while input("please input: ")!="exit":
    print("input error")

 

Python用户终端输入

原文:https://www.cnblogs.com/BlogsOfLei/p/9697156.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!