摘要: 循环语句whlie 的使用: count = 1 sum = 0 while count < 101: sum = sum + count count = count + 1 print(sum) 字符串(str):python中用引号引起来的都是str,str是可以相加的,str可以相乘:str* 阅读全文
posted @ 2020-06-05 10:51 安~♥ 阅读(127) 评论(2) 推荐(0) 编辑