반응형
https://www.py4e.com/code3/count1.py
Index of /code3
www.py4e.com
PY4E - Python for Everybody
Python for Everybody This web site is building a set of free materials, lectures, book and assignments to help students learn how to program in Python. You can take this course and receive a certificate at: If you log in to this site you have joined a free
www.py4e.com
#딕셔너리 word= 'brontosaurus' d=dict() for c in word: d[c]= d.get(c, 0) + 1 print(d) |
반응형