1
0
forked from tdwojak/Python2017

commited tasks

This commit is contained in:
s45150 2017-11-19 15:44:38 +01:00
parent fa0b6aa45a
commit 2522037757
2 changed files with 11 additions and 2 deletions

View File

@ -13,7 +13,11 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
def oov(text, vocab): def oov(text, vocab):
pass testList = []
_textPlit =text.split("")
return

View File

@ -7,7 +7,12 @@ Jeśli podany argument jest mniejszy od 1 powinna być zwracana wartość 0.
""" """
def sum_from_one_to_n(n): def sum_from_one_to_n(n):
pass if n < 0:
return 0
else:
for i in range(n):
x = x + i
return x
def tests(f): def tests(f):