• 第一章,重点总结


    1.长整数:>>>100000000000L,否则报错

    2.获取用户输入:input(“input your string:”),raw_input(“input your string:”)

    3.函数:绝对值:>>>abs(-10);输出10,四舍五入:>>>round(1.0/2.0);输出1.0

    4.模块:sqrt,计算平方根,import cmath(复数模块)>>>sqrt(-1);输出1j

    5.字符串:>>>"Hello,world";输出:'Hello,world',>>>'Hello,world';--'Hello,world',

        >>>"Let's go!";--"Let's go!" ,>>>'"Hello.world" she said';--'"Hello.world!" she said'

         字符串表示:str和repr

        >>>print repr("Hello,world!")

        'Hello,world!'

        >>>print repr(10000L)

        100000L

        >>>print str("Hello,world")

        Hello,world

        >>print str(100000L)

        100000

      input和raw_input

        name=input("What is your name?")

        print "Hello,"+name+"!"

        看起来完全合法,但是报错

        What is your name?Gumby

        ...

        NameError:name'Gumby' is not defined

        问题在于imput会假设用户输入的是合法的Python表达式

        What is your name? "Gumby"

        Hello,Gumby!

        输入带""的输入成功,然而不够友好,因此,需要使用raw_input函数,它会把所有输入当做原始数据(raw data),然后放入字符串

        >>>input("Enter a number:")

        Enter a number:3

        3

        >>>raw_input("Enter a number:")

        Enter a number:3

        '3'

        平时应用应该尽量使用raw_input,除非特别要求

      长字符串:

        '''sdfsdfsdf........

        ......sdfsdf''',

        """sdfs;dfklsd...

        ...sdgasdifasl"""

      原始字符串:(可以不用转义)

        >>>print r'c:asdqwewersdgfs'

        特例:反斜杠在最后

        >>>print r'c:asdqwewersdgfs' '\'

        >>>c:asdqwewersdgfs

      Unicode字符串:

        >>>u'Hello,world'

        u'Hello,world'

        

  • 相关阅读:
    SpringBoot(八):SpringBoot中配置字符编码 Springboot中文乱码处理
    SpringBoot(二): SpringBoot属性配置文件 SpringBoot多环境配置文件 SpringBoot自定义配置文件
    使用Maven新建SpringBoot工程
    SpringBoot(四): SpringBoot web开发 SpringBoot使用jsp
    SpringBoot(三):SpringBoot热部署插件
    SpringBoot(六):SpringBoot中如何使用Servlet?
    ARQ自动重传请求与UDP提供可靠交付
    多线程程序中操作的原子性转帖
    多目录的Makefile
    VC++小小绘图程序
  • 原文地址:https://www.cnblogs.com/yhcreak/p/5314820.html
Copyright © 2020-2023  润新知