标签: python numbers
我是python的新手,这仅仅是为了个人知识。
那么我如何设计一个程序来从用户那里取一个数字输入N并打印出从0到N的所有数字..
答案 0 :(得分:0)
这个有效
n = int(input("enter a number")) counts = 0 print (0) while counts != n: counts += 1 print(counts) if counts == n: break