您的位置:

Python 程序:打印集合中正数

编写一个 Python 程序来打印集合中的正数或项目。for 循环(PositiveSet 中的 posival)内的 if 语句(if(posival > = 0))检查 Set 项是否大于或等于零。如果为真,则打印该正数。

# Set Positive Numbers

PositiveSet = {7, -8, -11, 4, -85, 14, -22, 78, 11}
print("Positive Set Items = ", PositiveSet)

print("\nThe Positive Numbers in this PositiveSet Set are:")
for posVal in PositiveSet:
    if(posVal >= 0):
        print(posVal, end = "  ")

在 Python 集中打印正数输出

Positive Set Items =  {4, 7, -22, 11, -85, 14, 78, -11, -8}

The Positive Numbers in this PositiveSet Set are:
4  7  11  14  78 

在这个 Python 程序中,我们允许您输入集合项目并在集合中打印正数。

# Set Positive Numbers

positiveSet = set()

number = int(input("Enter the Total Positive Set Items = "))
for i in range(1, number + 1):
    value = int(input("Enter the %d Set Item = " %i))
    positiveSet.add(value)

print("Positive Set Items = ", positiveSet)

print("\nThe Positive Numbers in this positiveSet Set are:")
for posVal in positiveSet:
    if(posVal >= 0):
        print(posVal, end = "  ")

Python 打印正片集项目输出

Enter the Total Positive Set Items = 4
Enter the 1 Set Item = -32
Enter the 2 Set Item = 23
Enter the 3 Set Item = -99
Enter the 4 Set Item = 77
Positive Set Items =  {-32, 77, -99, 23}

The Positive Numbers in this positiveSet Set are:
77  23 

在这个 Python Set 的例子中,我们创建了一个 setPositiveNumbers 函数来查找和打印正数。

# Set Positive Numbers

def setPositiveNumbers(positiveSet):
    for posVal in positiveSet:
        if(posVal >= 0):
            print(posVal, end = "  ")

positiveSet = set()

number = int(input("Enter the Total Positive Set Items = "))
for i in range(1, number + 1):
    value = int(input("Enter the %d Set Item = " %i))
    positiveSet.add(value)

print("Positive Set Items = ", positiveSet)

print("\nThe Positive Numbers in this positiveSet Set are:")
setPositiveNumbers(positiveSet)

Python 程序:打印集合中正数

2022-07-24
Python 程序:打印集合中负数

2022-07-24
Python 程序:打印集合中的奇数

2022-07-24
Python 程序:打印集合中的偶数

2022-07-24
Python 程序:打印数组中正数

2022-07-24
Python 程序:打印列表中正数

2022-07-24
Python 程序:打印元组中正数

2022-07-24
Python 程序:打印范围内正数

2022-07-24
Python 程序:创建集合

2022-07-24
Python 程序:打印数组长度

2022-07-24
Python 程序:使用集合计数字符串中元音

在这个简单的 python 程序中,我们需要使用集合来计算字符串中的元音。这是一个基于数字的 python 程序。 为了更好地理解这个例子,我们总是建议您学习下面列出的 Python 编程的基本主题:

2023-12-08
Python 程序:打印数组中奇数

2022-07-24
Python 程序:打印数组中偶数

2022-07-24
Python 程序:打印两个字符串中出现的字母

在这个简单的 python 程序中,我们需要打印两个字符串中的哪些字母。这是一个基于数字的 python 程序。 为了更好地理解这个例子,我们总是建议您学习下面列出的 Python 编程的基本主题:

2023-12-08
python漂亮打印教程,Python图案打印

2022-11-18
Python 程序:打印列表中负数

2022-07-24
Python 程序:打印数组中负数

2022-07-24
Python 程序:统计集合中的正数和负数

2022-07-24
Python 程序:打印列表中奇数

2022-07-24
Python 程序:读取三位数并打印所有组合

2022-07-24