摘要: 快速排序: 1.递归: 阅读全文
posted @ 2018-09-08 22:21 快乐多巴胺 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Python 的字符串内建函数 Python 的字符串常用内建函数如下: capitalize()将字符串的第一个字符转换为大写 center(width, fillchar) count(str, beg= 0,end=len(string)) bytes.decode(encoding="utf 阅读全文
posted @ 2018-09-08 21:27 快乐多巴胺 阅读(329) 评论(0) 推荐(0) 编辑
摘要: input while if 阅读全文
posted @ 2018-09-08 20:58 快乐多巴胺 阅读(135) 评论(0) 推荐(0) 编辑
摘要: whileifelse==input # -*- coding:utf-8 -*- flag = 0 while flag == 0 : username = input('请输入用户名:\n') password = input('请输入密码\n') if username == 'ps' and password =='ps': print('成功!'... 阅读全文
posted @ 2018-09-08 20:55 快乐多巴胺 阅读(88) 评论(0) 推荐(0) 编辑