摘要:
快速排序: 1.递归: 阅读全文
摘要:
Python 的字符串内建函数 Python 的字符串常用内建函数如下: capitalize()将字符串的第一个字符转换为大写 center(width, fillchar) count(str, beg= 0,end=len(string)) bytes.decode(encoding="utf 阅读全文
摘要:
input while if 阅读全文
摘要:
whileifelse==input # -*- coding:utf-8 -*- flag = 0 while flag == 0 : username = input('请输入用户名:\n') password = input('请输入密码\n') if username == 'ps' and password =='ps': print('成功!'... 阅读全文