输入函数
- 用来接收用户交互数据,把用户输入数据传递给程序的函数。python中用input()函数实现。
>>> a=input()
23 #程序提示输入内容
>>> a
23
>>> type(a)
<type 'int'>
>>>
通过使用input()函数,程序提示输入内容,然后按enter键,python把输入内容赋值给a,然后打印出a的内容。
- 输入float和str型数据
>>> a=int(input())
3
>>> a
3
>>> a =float(input())
2.1
>>> a
2.1
>>> a = input()
"hello"#输入字符串
>>> type(a)
<type 'str'>
>>>
从终端输入什么数据,a将变成什么类型的数据。
- 输入Fraction 和Complex
>>> a = Fraction(input('input a fraction:'))
input a fraction:'1/3'
>>> a
Fraction(1, 3)
>>>
>>> z = complex(input('Enter a complex number:'))
Enter a complex number:1+2j
>>> z
(1+2j)
参考网站分数