菜鸟学Python第五天 流程控制 for循环 while循环 VS for循环: while循环:称之为条件循环,循环的次数取决于条件何时为false for循环:称之为迭代器循环,循环的次数取决于数据包含的成员个数 for循环专门用来取值,在循环取值方面比while循环强大,以后 遇到循环取值的场景,就应该用for循环 for循环对字典进行取值,取出的是字典的key. for + break for i in range(1,10): if i == 3: break 1 2 for + c…
1.去空格 strip() >>> s = 'a b c d ' >>> s.strip() 'a b c d' 2.lstrip() 方法用于截掉字符串左边的空格或指定字符 #!/usr/bin/python str = " this is string example!" print str.lstrip() str = "99999this is string example!888888" ') 以上实例输出结果如下: $…
#-*- coding:utf-8 -*- strword = "i will fly with you , fly on the sky ." #find print(strword.find("fly")) #打印7 #find返回找到第一个字符串的下标,找不到返回-1 print("==rfind==") #rfind print(strword.rfind("fly")) #rfind 从后向前查找,找到返回下标,找不…