2018-7-7-Python练习
Posted lylyfly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2018-7-7-Python练习相关的知识,希望对你有一定的参考价值。
7个基本掌握
join
split
find
strip
upper
lower
replace
进阶掌握
索引
切片
len
range
test = "abcdeabcfg" v = test[4] print(v) w = test[0:3] print(w) x = len(test) print(x)
for循环
#while冗长,for的精简 test = "我是一个卧底" # index = 0 # while index < len(test): # v = test[index] # print(v) # index += 1 for i in test: print(i)
以上是关于2018-7-7-Python练习的主要内容,如果未能解决你的问题,请参考以下文章
Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段