随笔分类 -  python

摘要:1.输入一个数字,判断返回-- input, if num = int(input("Enter: ")) #输入一个数字 if num <= 100: print("...") else: 2.循环倒叙输出20个数字-- while, w -= 1 w = 20while w > 1: print 阅读全文
posted @ 2020-06-18 15:39 penny_zpp