Initial work

This commit is contained in:
bluepython508
2023-11-01 08:55:40 +00:00
parent 996ea45153
commit 688d1ec426
48 changed files with 1148 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
counts = { 'chuck': 1, 'annie': 42, 'jan': 100 }
for key in counts:
if (count := counts[key]) > 1:
print(key, count)
lst = list(counts.keys())
print(lst)
lst.sort()
for key in lst:
print(key, counts[key])