91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python 循環:for()、while()

發布時間:2020-08-04 08:37:28 來源:網絡 閱讀:396 作者:虎皮喵的喵 欄目:編程語言

格式:

    for 變量 in 列表:

    while 表達式:


一、for循環

#!/usr/bin/python

#for [0..5]
sum = 0;  #當我沒有初始化sum時,會提示TypeError: unsupported operand type(s) for +:

                #'builtin_function_or_method' and 'int' 

for x in [0, 1, 2, 3, 4, 5]:
    sum = sum + x;
    print x, sum;
print sum;

python 循環:for()、while()


#for [0..5]
sum = 0;
for x in range(6):
    sum += x;
    print x, sum;
print sum;

python 循環:for()、while()

python 循環:for()、while()


#for list/tuple
list = ['a', 'b', 'c', 'you'];
for list in list:
     print list;

python 循環:for()、while()


二、while循環

#!/usr/bin/python

n = 9
while n > 0:
    print n;
    n -= 1;  #python不支持 ++/--操作

python 循環:for()、while()


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金阳县| 天台县| 松江区| 淮阳县| 贡嘎县| 保靖县| 弋阳县| 铅山县| 融水| 上林县| 唐河县| 桐乡市| 读书| 安溪县| 尼勒克县| 马鞍山市| 陕西省| 榆社县| 铁岭县| 灌阳县| 饶平县| 米易县| 邻水| 盐亭县| 宁南县| 鲁甸县| 布尔津县| 新河县| 玛纳斯县| 西城区| 保山市| 武宣县| 江阴市| 哈巴河县| 祁连县| 镇巴县| 万安县| 门源| 宁安市| 清涧县| 文登市|