Situatie
Example:
Input: list1 = [12, -7, 5, 64, -14] Output: -7, -14 Input: list2 = [12, 14, -95, 3] Output: -95
Backup
list of numberslist1 = [11, -21, 0, 45, 66, -93] # iterating each number in listfor num in list1: # checking condition if num < 0: print(num, end = " ") |
Output:
-21 -93
Solutie
Method2
# Python program to print negative Numbers in a List # list of numberslist1 = [-10, 21, -4, -45, -66, 93]num = 0 # using while loop while(num < len(list1)): # checking condition if list1[num] < 0: print(list1[num], end = " ") # increment num num += 1 |
Output:
-10 -4 -45 -66
Leave A Comment?