博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python代码
阅读量:6252 次
发布时间:2019-06-22

本文共 1793 字,大约阅读时间需要 5 分钟。

  • 原始字符串,不做任何特殊的处理
  • print("Newlines    are    indicated    by    \n")#Newlines are indicated by print(r"Newlines are indicated by \n")#Newlines are indicated by \n
  • 格式输出,转化为字符串由format自动完成
  • age    =    20 name    =    'Swaroop'print('{0} was {1} years old when he wrote this book'.format(name, age))
  • 元组字典做函数参数
  • def    total(a=5,    *numbers,    **phonebook):                    print('a',    a)            for    single_item    in    numbers:                                        print('single_item',    single_item)                        for    first_part,    second_part    in    phonebook.items():                                        print(first_part,second_part)print(total(10,1,2,3,Jack=1123,John=2231,Inge=1560))
  • 字符串连接链表
  • delimiter    =    '____' mylist    =    ['Brazil',    'Russia',    'India',    'China'] print(delimiter.join(mylist))#Brazil____Russia____India____China
  • 类变量、方法,对象变量、方法
  • class Robot:    '''表示有一个带有名字的机器人。'''    #类变量    population = 0    __population2 = 0#双下划线代表私有    def __init__(self, name):    #对象变量        self.name = name        self.__name2 = name#双下划线代表私有        Robot.population += 1    #对象方法    def die(self):        Robot.population -= 1    #类方法,用classmethod定义    @classmethod    def how_many(self):        print("We have {:d} robots.".format(self.population))Robot("蒋凯楠").how_many()
  • 代码中有中文导致的错误加入下面的代码,注意别忘了等号
  • # coding=gbk
  • try--except--elsetry--except--finally
  • #coding=gbk'''try--except--elsetry--except--finallyelse只在没有异常时执行,有异常时不执行elsefinally一定会被执行,无论有没有异常except在异常匹配时执行'''import timetry:        for i in range(1, 2, 1):                print(i)                time.sleep(1)        raise KeyboardInterrupt()except KeyboardInterrupt:        print("CTRL+C后,except执行了")finally:        print("CTRL+C后,finally执行了")

     

     

转载于:https://www.cnblogs.com/jkn1234/p/8797947.html

你可能感兴趣的文章
SVN与TortoiseSVN实战:补丁详解
查看>>
修改wxpython.TextCtrl控件上的文字大小
查看>>
将数据库的二进制字节转换成图片
查看>>
获取当前程序的路径
查看>>
Mysql InnoDB锁
查看>>
Rabbit-service Message queue MQ 验证 校验
查看>>
fopen/fclose
查看>>
NTP DDOS攻击
查看>>
zabbix2.2.3 VMware Vsphere exsi监控配置步骤
查看>>
正则表达式
查看>>
疯狂Android入门_事件处理
查看>>
第五次作业:结对项目-四则运算 “软件”之升级版
查看>>
k8s集群安装
查看>>
JavaWeb项目中文乱码问题
查看>>
hdu1827 有向图的强连通分量/缩点-tarjan
查看>>
存储管理
查看>>
求子数组最大和
查看>>
《数据结构与算法》-1-绪论
查看>>
SpringMvc文件上传
查看>>
shell之列表的定义与循环
查看>>