python死循环_python死循环例子_Python | 一些循环的例子
python死循环例子1. Print all the no. between 1 to n1.打印所有编号。 在1到n之间n=int(input("Enter N: "))for i in range(1,n+1):print(i)Output输出量Enter N: 5123452. Print table of number2.打印号码表n=int(input("Enter N: "))for...