Day1_Markdown版改写

作者: 开发猛男 | 来源:发表于2017-11-12 10:43 被阅读0次

    前文

    视频看无聊了,也不想再看廖雪峰的教程了。

    现在开始记录《Python编程:从入门到实践》的笔记和进度。

    字符串:

    name = "ada lovelace"
    name=name.title()     #Ada Lovelace
    name.upper()       #ADA LOVELACE
    name.lower()        #ada lovelace
    fav_lan = '    Python    '
    fav_lan.lstrip()    #'Python    '
    fav_lan.rstrip()    #'    Python'
    fav_lan.strip()    #'Python'
    
    >>> 3 / 2
    1.5
    >>> 3 ** 3
    27
    >>> 10 ** 6
    1000000
    

    import this # The Zen of Python

    不要企图编写完美无缺的代码;先编写行之有效的代码,再决定是对其做进一步改进,还是转而去编写新代码。

    第三章 列表

    2. 在列表中插入元素

    1. 方法append()在末尾添加

    2. 使用方法insert()可在列表的任何位置添加新元素。为此,你需要指定新元素的索引和值。

    motorcycles = ['honda', 'yamaha', 'suzuki']
    motorcycles.insert(0, 'ducati')  #方法insert()在索引0处添加空间
    print(motorcycles)
    

    并将值'ducati'存储到这个地方。这种操作将列表中既有的每个元素都右移一个位置

    ['ducati', 'honda', 'yamaha', 'suzuki']

    3.2.3 从列表中删除元素

    1. 使用del语句删除元素

    如果知道要删除的元素在列表中的位置,可使用del语句。

    motorcycles = ['honda', 'yamaha', 'suzuki']
    print(motorcycles)
    del motorcycles[0] #删除了列表motorcycles中的第一个元素——'honda':
    print(motorcycles)
    
    ['honda', 'yamaha', 'suzuki']
    ['yamaha', 'suzuki']
    

    2. 使用方法pop()删除元素

    motorcycles = ['honda', 'yamaha', 'suzuki']

    1. 方法pop()可删除列表末尾的元素,并返回该元素。

    latest = motorcycles.pop()

    1. 以使用pop()来删除列表中任何位置的元素

    temp = motorcycles.pop(0) #删除索引为0的元素

    1. 方法remove()根据值删除元素
    motorcycles = ['honda', 'yamaha', 'suzuki', 'ducati']
    motorcycles.remove('ducati')     #删除list中值为ducati的元素
    

    注意:方法remove()只删除第一个指定的值

    3.3.1 使用方法 sort()对列表进行永久性排序

    cars = ['bmw', 'audi', 'toyota', 'subaru']
    cars.sort(reverse=True)     #反向排序
    

    3.3.2 使用函数 sorted()对列表进行临时排序

    print(sorted(cars,reverse=True))
    cars.reverse()     #永久性反转列表
    

    P61
    好像是要好看些哈,而且也花不了多少时间排版。
    事实上我感觉熟练之后,绝对不会比原版慢。

    相关文章

      网友评论

        本文标题:Day1_Markdown版改写

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