forked from tdwojak/Python2017
17 lines
278 B
Python
17 lines
278 B
Python
from task00 import suma
|
|
import sys
|
|
|
|
def main():
|
|
listToSum = sys.argv[1:]
|
|
|
|
for i in listToSum:
|
|
x = listToSum.index(i)
|
|
try:
|
|
float(i)
|
|
except:
|
|
listToSum[x] = 0
|
|
|
|
print(suma(listToSum))
|
|
|
|
if __name__ == "__main__":
|
|
main() |