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