Compare commits

..

3 Commits
1.0 ... main

Author SHA1 Message Date
Lukas Baumann
bea99e5e1e
Update 4 - Be Choosy.py 2021-02-22 11:39:56 +01:00
Lukas Baumann
665b8f3835
Update 3 - Poetic Analysis.py 2021-02-22 11:34:20 +01:00
Lukas Baumann
80e1239159
Update 3 - Poetic Analysis.py 2021-02-22 11:20:58 +01:00
2 changed files with 7 additions and 16 deletions

View File

@ -1,16 +1,7 @@
txt = input().split() txt = input().lower().split()
while txt[-1] != "###": while txt[-1] != "###":
txt += input().split() txt += input().lower().split()
amount = {} m = [0]*len(txt)
for i in txt: for i in range(len(txt)):
if i.lower() in amount: m[i]=txt.count(txt[i])
amount[i.lower()] += 1 print(txt[m.index(max(m))])
else:
amount[i.lower()] = 1
max = ["", 0]
for i in amount:
if amount[i] > max[1]:
max = [i, amount[i]]
else:
pass
print(max[0])

View File

@ -1,7 +1,7 @@
def choose(n, k): def choose(n, k):
res = n/k res = n/k
while k > 1: while k > 1:
n-= 1 n -= 1
k -= 1 k -= 1
res *= n/k res *= n/k
return res return res