반응형
[파이썬/Python] Python으로 영어 단어 길이 계산해보기
#파이썬 단어 길이 len()
#파이썬 갖고 놀기
#파이썬으로 영어 단어 길이 계산
파이썬으로 주어진 영어단어들의 길이를 계산해서 출력해보록 할게요.
간단하게 len() 함수를 써서 단어의 길이를 계산 할 수 있어요.
Python Code
# -*- coding: utf-8 -*-
import string
def read_file(path):
with open(path) as f:
lines = f.read().split()
return lines
def main():
a_dict = dict(zip(string.ascii_lowercase, range(1, 27)))
word_file = "./words_list/wordlist.10000"
for word in read_file(word_file):
print('{0:<20s} {1:>2d}'.format(word, len(word)))
if __name__ == "__main__":
main()
결과 값 Sample
a 1
aa 2
aaa 3
aaron 5
ab 2
abandoned 9
abc 3
aberdeen 8
abilities 9
ability 7
able 4
aboriginal 10
abortion 8
about 5
above 5
abraham 7
abroad 6
abs 3
absence 7
absent 6
absolute 8
absolutely 10
absorption 10
abstract 8
abstracts 9
abu 3
abuse 5
ac 2
academic 8
academics 9
academy 7
acc 3
accent 6
accept 6
acceptable 10
acceptance 10
accepted 8
accepting 9
accepts 7
access 6
accessed 8
accessibility 13
accessible 10
accessing 9
accessories 11
accessory 9
accident 8
accidents 9
accommodate 11
accommodation 13
반응형