python如何使用raw_input()函数

这篇文章主要介绍python如何使用raw_input()函数,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

成都创新互联专注骨干网络服务器租用10年,服务更有保障!服务器租用,温江服务器托管 成都服务器租用,成都服务器托管,骨干网络带宽,享受低延迟,高速访问。灵活、实现低成本的共享或公网数据中心高速带宽的专属高性能服务器。

raw_input()函数

raw_input():读取输入语句并返回string字符串,输入以换行符结束。

>>> name = raw_input("please input your name:")
please input your name:abc
>>> print(name)
abc
>>> type(name)
<type 'str'>

注意:input()和raw_input()函数的区别:(1)input支持合法python表格式“abc",字符串必须用引号扩起;否则会报语法错误(2) raw_input()将所有输入作为字符串,返回string,而input()输入数字时具有自己的特性,返回输入的数字类型int或float。

#1、语法报错
>>> name = input("input your name:")
input your name:abc
Traceback (most recent call last:)
   File "<stdin>",line 1, in <module>
   File "<string>",line 1, in <module>
NameError: name 'abc' is not defined
#2、正确输入
>>> name = input("input your name:")
input your name:"abc"
>>> print(name)
abc
#3、input()数据类型
>>> age = input("your age:")
your age:20
>>> type(age)
<type 'int'>
#4、raw_input() 数据类型均为str
>>> age = raw_input("your age:")
your age:20
>>> type(age)
<type 'str'>

以上是“python如何使用raw_input()函数”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注创新互联行业资讯频道!

本文名称:python如何使用raw_input()函数
链接URL:https://www.cdcxhl.com/article40/godheo.html

成都网站建设公司_创新互联,为您提供品牌网站制作外贸建站网站设计网站内链微信公众号微信小程序

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联

h5响应式网站建设