摘要:
capitalize()将字符串的第一个字符转换为大写 center(width, fillchar) count(str, beg= 0,end=len(string)) bytes.decode(encoding="utf-8", errors="strict") encode(encoding 阅读全文
摘要:
# Allan Haven #定义年龄变量 age_of_oldboy = 56 count = 0 #定义次数变量 while count<3:#判断猜的次数 guess_age = int(input("guess age:")) #限定输入值为数字 if guess_age == age_of 阅读全文
摘要:
Python3中的标准数据类型有以下几种: 1. Number(数字) 2. String(字符串) 3. List(列表) 4. Tuple(元组) 5. Set(集合) 6. Dictionary(字典) Python3 的六个标准数据类型中: 不可变数据(3 个):Number(数字)、Str 阅读全文