Python第一天学习笔记之输入与输出

一、Python的输出

    1、Python2和Python3的输出差异

           python2: print "要打印的字符串"

           python2: print ("要打印的字符串")

           python3: print("要打印的字符串")

        

        

        

    

 2、Python 中字符串、整形、浮点数的输出

    (1)字符串的输出

          name = "python"

          world = "world"

          print("hello %s %s" %(,world,name))

          

    (2)整形的输出

        num = 19 

        print ("num : %d"%(num))

        print ("num : %.3d"%(num))    #num精度为3,左侧补零

        print ("num : %8.3d"%(num))  #num 占8个位 靠右侧,精度为3位

        

    (3)浮点数的输出

        num = 19.456

      

二、Python的输入  

 1、Python2和Python3的输入差异

     python2:

         raw_input(): 接收字符串的数据;

         input(): 只能接收数值,他会将输入的内容首先当做运算表达式进行运算。

        

        

      python3:

        

        

三、特殊的输入与输出

        输出 : "python's hello world"

        

        输出 : hello world 'python'

        

        输出 20.5%   

              这里我们需要用到%作为转义字符.



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值