码迷,mamicode.com
首页 > 编程语言 > 详细

Python基础 input()的使用

时间:2019-06-12 10:43:36      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:标准输入   使用   标准   pre   lease   pytho   class   name   值类型   

input()函数用于读取标准输入
注意:input函数的返回值类型为字符串

        >>> num=input("Please input a number:")
        Please input a number:32
        >>> type(num)
        <class ‘str‘>

        >>> num1=input("Please input the number1:")
        Please input the number1:5
        >>> num2=input("Please input the number2:")
        >>> print("number1 + number2 =",(num1+num2))
        number1 + number2 = 53
        >>> print("number1 + number2 =",(int(num1)+int(num2)))
        number1 + number2 = 8
        >>> cus=input("Please input the custom name:")
        Please input the custom name:Tom
        >>> cid=input("Please input the custom ID:")
        Please input the custom ID:001
        >>> cus_info=‘‘‘
                        custom_name:{0}
                        custom_id:{1}
                        ‘‘‘.format(cus,cid)
        >>> print(cus_info)
        custom_name:Tom
        custom_id:001

Python基础 input()的使用

标签:标准输入   使用   标准   pre   lease   pytho   class   name   值类型   

原文地址:https://blog.51cto.com/5279100/2407457

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!