1
0
forked from tdwojak/Python2017
This commit is contained in:
Przemysław Kaczmarek 2017-11-28 18:27:00 +01:00
parent 76f3b5ba55
commit 87b7b6d675
3 changed files with 18 additions and 11 deletions

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

View File

@ -5,15 +5,8 @@
Napisz funkcję days_in_year zwracającą liczbę dni w roku (365 albo 366).
"""
"""
jest podzielna przez 4 i niepodzielna przez 100, lub
jest podzielna przez 400.
"""
def days_in_year(days):
if (days%4 == 0 & days%100 != 0):
return 366
elif days%400:
def days_in_year(year):
if (year%4 == 0 and year%100 != 0) or year%400==0:
return 366
else:
return 365

View File

@ -13,8 +13,14 @@ jak 'set', która przechowuje elementy bez powtórzeń.)
def oov(text, vocab):
pass
text_words=text.split()
oov_list=[]
for word in text_words:
if word in vocab:
pass
else:
oov_list.append(word)
return oov_list
def tests(f):
@ -30,3 +36,5 @@ def tests(f):
if __name__ == "__main__":
print(tests(oov))