av激情亚洲男人的天堂国语,日韩欧美精品一中文字幕,无码av一区二区三区无码,国产又色又爽又刺激的a片,国产又色又爽又刺激的a片

Python程序:打印元組中負數(shù)

創(chuàng)新互聯(lián)Python教程:

為恩平等地區(qū)用戶提供了全套網(wǎng)頁設計制作服務,及恩平網(wǎng)站建設行業(yè)解決方案。主營業(yè)務為網(wǎng)站設計、成都網(wǎng)站建設、恩平網(wǎng)站設計,以傳統(tǒng)方式定制建設網(wǎng)站,并提供域名空間備案等一條龍服務,秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!

編寫一個 Python 程序,使用 for 循環(huán)范圍打印元組中的負數(shù)。if 語句(if(negTuple[i] < 0))檢查 Tuple 項是否小于零。如果為真,則打印負元組編號(打印(負元組[i],end = ")。

# Tuple Negative Numbers

negTuple = (3, -8, -22, 4, -98, 14, -33, -78, 11)
print("Negative Tuple Items = ", negTuple)

print("\nThe Negative Numbers in negTuple Tuple are:")
for i in range(len(negTuple)):
    if(negTuple[i] < 0):
        print(negTuple[i], end = "  ")
Negative Tuple Items =  (3, -8, -22, 4, -98, 14, -33, -78, 11)

The Negative Numbers in negTuple Tuple are:
-8  -22  -98  -33  -78 

使用 For 循環(huán)打印元組中負數(shù)的 Python 程序。

在這個 Python 負數(shù)示例中,我們使用 for 循環(huán)(對于 negTuple 中的 ngtup)來迭代實際的元組項。

# Tuple Negative Numbers

negTuple = (25, -14, -28, 17, -61, -21, 89, 17, -48, 0)
print("Negative Tuple Items = ", negTuple)

print("\nThe Negative Numbers in this negTuple Tuple are:")
for ngtup in negTuple:
    if(ngtup < 0):
        print(ngtup, end = "  ")
Negative Tuple Items =  (25, -14, -28, 17, -61, -21, 89, 17, -48, 0)

The Negative Numbers in this negTuple Tuple are:
-14  -28  -61  -21  -48 

Python 程序使用 While 循環(huán)返回或顯示元組中的負數(shù)。

# Tuple Negative Numbers

negTuple = (11, -22, -45, 67, -98, -87, 0, 16, -120) 
print("Negative Tuple Items = ", negTuple)

i = 0

print("\nThe Negative Numbers in negTuple Tuple are:")
while (i < len(negTuple)):
    if(negTuple[i] < 0):
        print(negTuple[i], end = "  ")
    i = i + 1
Negative Tuple Items =  (11, -22, -45, 67, -98, -87, 0, 16, -120)

The Negative Numbers in negTuple Tuple are:
-22  -45  -98  -87  -120 

在這個 Python Tuple 示例中,我們創(chuàng)建了一個函數(shù)(tupleNegativeNumbers(negTuple))來查找并打印負數(shù)。

# Tuple Negative Numbers

def tupleNegativeNumbers(negTuple):
    for potup in negTuple:
        if(potup < 0):
            print(potup, end = "  ")

negTuple = (9, -23, -17, 98, 66, -12, -77, 0, -2, 15) 
print("Negative Tuple Items = ", negTuple)

print("\nThe Negative Numbers in negTuple Tuple are:")
tupleNegativeNumbers(negTuple)


文章題目:Python程序:打印元組中負數(shù)
URL網(wǎng)址:http://uogjgqi.cn/article/dpigpee.html
掃二維碼與項目經(jīng)理溝通

我們在微信上24小時期待你的聲音

解答本文疑問/技術咨詢/運營咨詢/技術建議/互聯(lián)網(wǎng)交流