Sunday, September 27, 2020

how to add negative numbers in list in python

 given_list = [5, 4, 4, 3, 1, -2, -3, -5, -7]

total = 0

i = 0

while(i < len(given_list)):

    if given_list[i] < 0:

        total += given_list[i]

        i += 1

print(total)

No comments:

Post a Comment

SAP Tcodes

zme27 - Automatic STO creation mmbe - Stock Overview, Material, Batch me51n - Create Purchase Requisition me21n - Create Purchase Order me59...