20210107 TIL # python control statement for looping # for ~ in range() # for ~ in list(), dict # list comprehension userList = [1, 2, 3, 4, 5, 6, 7, 8, 9] userList02 = [tmp ** 2 for tmp in userList] print('comprehension - ', userList02) '''***************************************''' # 단어의 빈도수 구하기 wordVec = ["love", "word", "cat", "love", "love", "word"] print(len(wordVec)) wordCnt = {} for word i..