[파이썬/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.1000..