Python 打印范围内的所有负数的程序
有时任务是从给定范围中选择负数。在这篇Python文章中,首先输入范围,然后指定该范围内的整数。然后使用4个不同的示例中的不同方法仅选择负数。在示例1中,负数被挑选出并分开成另一个列表。在示例2中,移除所有不是负数的元素。在示例3中,将排序的列表分割到零,并且只保留负数。在示例4中,使用过滤器选择负数。
示例1-仅选择范围内的负数并将其分离到另一个列表以打印
步骤1 −指定范围中的最小和最大数作为输入。最小数应为负数,最大数应为正数。制作给定范围内的整数列表
步骤2 −首先将所有负数分离到一个单独的列表中。打印这些数字。
步骤3 −运行程序,然后检查结果。
Python文件包含以下内容
lowNum=-50
highNum=60
mainlist=[]
listNeg=[]
#Making the main list with integers starting from lowNum and upto HighNum
for item in range(lowNum, highNum+1):
mainlist.append(item)
print("In the given range from ", lowNum, " to", highNum, " :")
print("\nThe Main List :")
print(mainlist)
#dividing the main list into negatives and positives
for item in mainlist:
if (item < 0):
listNeg.append(item)
print("\nThe Negative Elements in the Range :")
print(listNeg)
结果
要查看结果,请在命令窗口中运行Python文件。
In the given range from -50 to 60 :
The Main List :
[-50, -49, -48, -47, -46, -45, -44, -43, -42, -41, -40, -39, -38, -37,
-36, -35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23,
-22, -21, -20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9,
-8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60]
The Negative Elements in the Range :
[-50, -49, -48, -47, -46, -45, -44, -43, -42, -41, -40, -39, -38, -37, -36,
-35, -34, -33, -32, -31, -30, -29, -28, -27, -26, -25, -24, -23, -22, -21,
-20, -19, -18, -17, -16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5,
-4, -3, -2, -1]
示例2:删除所有非负元素并打印剩余的负数
步骤
步骤1 − 首先确定范围内的最小值和最大值。最小值应为负数,最大值应为正数。构建一个范围内的整数列表。
步骤2 − 先将该列表复制为排序列表,然后删除其中大于零的所有数字。
步骤3 − 打印出主列表中剩余的所有负数。
步骤4 − 运行程序并检查结果。
Python文件包含如下内容
lowNum=-40
highNum=50
mainlist=[]
mainlistcopy=[]
#Making the main list with integers starting from lowNum and upto HighNum
for item in range(lowNum, highNum+1):
mainlist.append(item)
print("In the given range from ", lowNum, " to", highNum, " :")
print("\nThe Main List :")
print(mainlist)
mainlistcopy=sorted(mainlist)
for item in mainlistcopy:
if (item >= 0):
mainlist.remove(item)
print("\nThe Negative Elements in the List :")
print(mainlist)
结果
打开cmd窗口并运行python文件以查看结果。
In the given range from -40 to 50 :
The Main List :
[-40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27,
-26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13,
-12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50]
The Negative Elements in the List :
[-40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28,
-27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15,
-14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1]
示例3 – 将排序后的列表分割到零,并保留负数进行打印。
步骤
步骤1 - 指定范围内的最小和最大数字。最小数字应为负数,最大数字应为正数。创建一个包含输入范围内所有整数的列表。
步骤2 - 首先复制此列表,然后将该列表分割并选择小于零的数字。
步骤3 - 打印列表副本中所有剩余的负数。
步骤4 - 运行程序,然后检查结果。
Python文件包含如下内容
lowNum=-40
highNum=60
mainlist=[]
listNeg=[]
#Making the main list with integers starting from lowNum and upto HighNum
for item in range(lowNum, highNum+1):
mainlist.append(item)
print("In the given range from ", lowNum, " to", highNum, " :")
print("\nThe Main List :")
print(mainlist)
listNeg=mainlist
listNeg[:] = [item for item in listNeg if item < 0]
print("\nThe negative Elements in the List :")
print(listNeg)
结果
要查看结果,请在cmd窗口中运行Python文件。
In the given range from -40 to 60 :
The Main List :
[-40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27,
-26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13,
-12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43,
44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60]
The negative Elements in the List :
[-40, -39, -38, -37, -36, -35, -34, -33, -32, -31, -30, -29, -28, -27,
-26, -25, -24, -23, -22, -21, -20, -19, -18, -17, -16, -15, -14, -13,
-12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1]
图3:在命令窗口显示结果。
示例4:使用过滤器选择负数并过滤掉非负数
步骤
步骤1 - 赋值范围内最小和最大数的值。最小数应为负数,最大数应为正数。制作一个包含该输入范围内所有整数的列表。
步骤2 - 使用带有lambda函数的过滤器。
步骤3 - 在新列表中过滤掉负数。打印所有在新列表中过滤出的负数。
步骤4 - 运行程序,然后检查结果。
Python文件中包含以下内容
lowNum=-30
highNum=20
mainlist=[]
listNeg=[]
#Making the main list with integers starting from lowNum and upto HighNum
for item in range(lowNum, highNum+1):
mainlist.append(item)
print("In the given range from ", lowNum, " to", highNum, " :")
print("\nThe Main List :")
print(mainlist)
listNeg = list(filter(lambda item: item < 0, mainlist))
print("\nThe Negative Elements in the Range :")
print(listNeg)
结果
打开cmd窗口并运行python文件以查看结果。
In the given range from -30 to 20 :
The Main List :
[-30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17,
-16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1,
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
The Negative Elements in the Range :
[-30, -29, -28, -27, -26, -25, -24, -23, -22, -21, -20, -19, -18, -17,
-16, -15, -14, -13, -12, -11, -10, -9, -8, -7, -6, -5, -4, -3, -2, -1]
在这篇Python文章中,使用四个不同的示例,给出了如何找到给定范围内的负数并打印出来的方法。首先,在示例1中,负数被分离到另一个列表中。在示例2中,所有非负数的元素被移除。在示例3中,列表被拆分,只保留负数。在示例4中,使用过滤器来选择负数。