新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
Python程序:打印集合中的奇數(shù)
創(chuàng)新互聯(lián)python教程:

創(chuàng)新互聯(lián)專注于善右企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城建設(shè)。善右網(wǎng)站建設(shè)公司,為善右等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站開發(fā),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
寫一個(gè) Python 程序來打印集合中的奇數(shù)。if 語句(if(odval % 2!= 0))檢查可被二整除的集合項(xiàng)是否不等于零。如果為真,則打印集合中的奇數(shù)。
# Set Odd Numbers
oddSet = {26, 33, 19, 8, 41, 35, 12, 17}
print("Odd Set Items = ", oddSet)
print("\nThe Odd Numbers in this oddSet Set are:")
for odval in oddSet:
if(odval % 2 != 0):
print(odval, end = " ")在 python 集中打印奇數(shù)輸出
Odd Set Items = {33, 35, 8, 41, 12, 17, 19, 26}
The Odd Numbers in this oddSet Set are:
33 35 41 17 19 這個(gè) Python 集合程序允許輸入集合項(xiàng)目和打印奇數(shù)。
# Set Odd Numbers
oddSet = set()
number = int(input("Enter the Total Odd Set Items = "))
for i in range(1, number + 1):
value = int(input("Enter the %d Set Item = " %i))
oddSet.add(value)
print("Odd Set Items = ", oddSet)
print("\nThe Odd Numbers in this oddSet Set are:")
for odval in oddSet:
if(odval % 2 != 0):
print(odval, end = " ")
在這個(gè) Python Set 的例子中,我們創(chuàng)建了一個(gè)(setddnumbers(oddSet))函數(shù)來打印奇數(shù)。
# Tuple Odd Numbers
def setOddNumbers(oddSet):
for odval in oddSet:
if(odval % 2 != 0):
print(odval, end = " ")
oddSet = set()
number = int(input("Enter the Total Odd Set Items = "))
for i in range(1, number + 1):
value = int(input("Enter the %d Set Item = " %i))
oddSet.add(value)
print("Odd Set Items = ", oddSet)
print("\nThe Odd Numbers in this oddSet Set are:")
setOddNumbers(oddSet)Python 打印奇數(shù)集物品輸出
Enter the Total Odd Set Items = 5
Enter the 1 Set Item = 12
Enter the 2 Set Item = 99
Enter the 3 Set Item = 121
Enter the 4 Set Item = 88
Enter the 5 Set Item = 77
Odd Set Items = {99, 12, 77, 88, 121}
The Odd Numbers in this oddSet Set are:
99 77 121 網(wǎng)站名稱:Python程序:打印集合中的奇數(shù)
標(biāo)題鏈接:http://m.fisionsoft.com.cn/article/dhddihc.html


咨詢
建站咨詢
