1
0
Fork 0

commited tasks

This commit is contained in:
s45150 2017-12-16 10:23:01 +01:00
parent 976044eb47
commit 128c5bbadf
3 changed files with 18 additions and 3 deletions

View File

@ -7,5 +7,5 @@ def isNumeric(x):
return False
return True
print(isNumeric([1,4,4.8,4]))
print(isNumeric([1,4,4.8,1]))

View File

@ -2,10 +2,10 @@
# -*- coding: utf-8 -*-
def suma(liczby):
pass
return sum(liczby)
def main():
print(summa([1, 2, 3, 4]))
print(suma([1, 2, 3, 4]))
if __name__ == "__main__":
main()

View File

@ -0,0 +1,15 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
import task00
import sys
def main():
print(sys.argv)
task00.suma()
if __name__ == "__main__":
main()