编程语言
首页 > 编程语言> > 百度飞桨领航团零基础Python速成营 课程总结2

百度飞桨领航团零基础Python速成营 课程总结2

作者:互联网

百度飞桨领航团零基础Python速成营 课程总结2

课程链接 https://aistudio.baidu.com/aistudio/course/introduce/7073
飞桨官网 https://www.paddlepaddle.org.cn/
推荐学习网站 https://www.runoob.com/python3/python3-tutorial.html


目录

课节2:Python编程基础

进阶

1.字符串

2.列表

作业二:Python编程基础(二)

按要求完成下列代码:

  1. 选取列表的第2到第5项,并打印(从0开始计数,即取出c d e f)

    words = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
    
    # 选取第2-5项,并打印
    # 索引左闭右开
    print(words[2:6])
    

    输出:

    ['c', 'd', 'e', 'f']
    
  2. 使用列表生成式的方法,根据 list1 生成 list2

    list1 = [1, 2, 3, 4, 5, 6, 7, 8]
    
    # 列表推导式生成list2
    list2 = [n*100 for n in list1]
    
    print(list2)
    

    输出:

    [100, 200, 300, 400, 500, 600, 700, 800]
    
  3. 把下列字符串按下划线(’’)划分成若干个片段
    string1 = ‘this_is_a_sample’
    生成按’
    '划分的字符串列表,即下列内容
    [‘this’, ‘is’, ‘a’, ‘sample’]

    string1 = 'this_is_a_sample'
    
    # 按'_'划分string1
    string1.split('_')
    

    输出:

    ['this', 'is', 'a', 'sample']
    

片段
string1 = ‘this_is_a_sample’
生成按’_'划分的字符串列表,即下列内容
[‘this’, ‘is’, ‘a’, ‘sample’]

```python
string1 = 'this_is_a_sample'

# 按'_'划分string1
string1.split('_')
```
输出:
```
['this', 'is', 'a', 'sample']
```

标签:格式化,函数,Python,max,飞桨,团零,num,str,字符串
来源: https://blog.csdn.net/weixin_48746231/article/details/114399326