0
Объясните как работает этот код?
text = input() dict = {} #ваш код for char in text: if char not in dict: dict[char]=1 else: dict[char] += 1 print(dict)
2 odpowiedzi
+ 2
Pavlo Lukashenko
Check the explanation in Codemurai's comments
https://code.sololearn.com/cebXGf11Gq58/?ref=app
0
Хорошо работает