This commit is contained in:
2020-02-23 09:36:31 +00:00
parent 61c69f23ec
commit f80c929e93

View File

@@ -25,7 +25,7 @@ txt = input("Text: ")
info = Counter(txt).most_common() info = Counter(txt).most_common()
# change the list into ascending order # change the list into ascending order
info.reverse() info.reverse()
# create list for character tupl es # create list for character tuples
nodes = [] nodes = []
# create list for node usage frequencies # create list for node usage frequencies
frequencies = [] frequencies = []