PHP前端开发

python如何打印1~20的整数

百变鹏仔 2个月前 (02-06) #Python
文章标签 整数

打印1~20之间整数的方法:

1、使用for循环

for i in range(1,21):    print(i,end=',')

输出结果

1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,

2、使用while循环

立即学习“Python免费学习笔记(深入)”;

i= 1while i <p>输出结果</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false">1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,