Python (5) 썸네일형 리스트형 [파이썬 토이프로젝트] wordcloud와 konlpy를 이용한 카카오톡 채팅내역 시각화 from wordcloud import WordCloud import matplotlib.pyplot as plt from collections import Counter from PIL import Image import numpy as np from konlpy.tag import Okt #단어 예외 처리 로직 def get_except_keyword(filename): keyword_list = list() with open(filename, encoding='utf-8') as f: for keyword in f.readlines(): keyword_list.append(keyword.strip()) return keyword_list #단어 예외처리 실행부 def do_except(text, e.. [Python] Snake게임 import os import keyboard import random import threading from time import sleep #맵크기 filed_size=11 #시작위치 start_position = int(filed_size/2) #시작위치변수 snake_y=start_position snake_x=start_position snake_position=[[snake_y,snake_x],[snake_y,snake_x],[snake_y,snake_x]] #스레드 키 입력 변수 key=None game_speed = 0.1 star_count = 0 game_speed = float(input("1~3 중 속도 입력 ")) * 0.1 #별 생성 주기 star_gen_cycle=5 star_.. [Python] 스네이크 게임3 보호되어 있는 글입니다. [Python] 스네이크 게임 2 보호되어 있는 글입니다. [Python] 스네이크 게임 1 보호되어 있는 글입니다. 이전 1 다음