摘要: week 改变大小写:.lower() .upper() 分割字符串:"a2b2c2d2e".split("2") ['a','b','c','d','e'] 计数字符串中指定字符出现的次数:"an apple a day".count('a') 4 替换字符串:"python".replace(" 阅读全文
posted @ 2020-01-20 14:56 天使书巫术 阅读(85) 评论(0) 推荐(0)
摘要: 小数RGB色彩:turtle.colormode(1.0) 整数RGB色彩:turtle.colormode(255) 设置窗口大小和初始位置:turtle.setup(width,height[,startx,starty]) 提起画笔:turtle.penup() 放下画笔:turtle.pen 阅读全文
posted @ 2020-01-20 14:54 天使书巫术 阅读(149) 评论(0) 推荐(0)
摘要: 输出不换行: 阅读全文
posted @ 2020-01-20 14:51 天使书巫术 阅读(114) 评论(0) 推荐(0)