美文网首页
基础知识

基础知识

作者: 宅心PM | 来源:发表于2016-12-15 14:34 被阅读6次
    • 检测一个数的类型 type(object)
    • 查看函数具体是干什么的 help(round)

    支持中文和找python解释器

    需在文件前加一行代码

    #! usr/bin/env python
    # coding:utf-8
    

    math模块,需要import引入

    • math.floor(32.9) # 取整,不是四舍五入,结果是32,
    • math.sqrt(4) # 开平方

    一些常见函数

    • 求绝对值 abs(-10)
    • 四舍五入 round(1.2323,2)

    结果是1.23

    • 幂函数 pow(2,3)

    2的3次方,8

    • 取余数,10%3

    结果是1

    • 返回商和余数 divmod(10,3)

    结果是(3,1)

    转义字符

    print("I am zhaixin \ # 使用\用于换行
    ... my website is zhaiixn.github.com .")"
    print("you can connect me in gmail\\qq\\weixin")      #用两个\\是为了得到一个\
    

    打印浮点数,

    注意%.2f部分,2表示保留小数点位数

    print ("His height is %.2f m"%(1.83))
    
    去掉字符串两边的空格
    • S.strip( )去掉字符串左右两边的空格
    • Sllstrip( ) 去掉字符串左边的空格

    相关文章

      网友评论

          本文标题:基础知识

          本文链接:https://www.haomeiwen.com/subject/bvwwmttx.html