摘要: 3.if else 4.字符串包含 第一种方法:in string = 'helloworld' if 'world' in string: print 'Exist' else: print 'Not exist' 第二种方法:find string = 'helloworld' if strin 阅读全文
posted @ 2018-06-09 21:45 linengier 阅读(204) 评论(0) 推荐(0) 编辑