Python 官方文档:入门教程 => 点击学习
这篇文章主要介绍python如何使用raw_input()函数,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!raw_input()函数raw_input():读取输入语句并返回string字符串,输入以换行符结束。&
这篇文章主要介绍python如何使用raw_input()函数,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
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:abcTraceback (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频道!
--结束END--
本文标题: python如何使用raw_input()函数
本文链接: https://lsjlt.com/news/286623.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0