import tkinter as tk class OptionMenu: width = 90 font = ("Ubuntu", 12) side = "top" label = None menus = list() @classmethod def create_menus(cls, win, menus): cls.menus = [{"menu": OptionMenu(option_list=menu, win=win, index=i), "text": menu[0]} for i, menu in enumerate(menus)] OptionMenu.add_label() def __init__(self, option_list=None, win=None, index=None): self.option_list = option_list sel..
remotedesktop.google.com/support/
import math from PIL import Image def rotate(x, y, theta, pi=3.14): radian = theta * pi / 180 sin = math.sin(radian) cos = math.cos(radian) new_x = cos*x - sin*y new_y = sin*x + cos*y return new_x, new_y def rotate_img(ori, theta): dst = Image.new("RGB", ori.size, (0, 0, 0)) width, height = ori.size pixels_dst = dst.load() pixels_ori = ori.load() for y in range(height): for x in range(width): ro..
1. 계좌생성 > 예금주 계좌번호 입금액 2. 입금 > 계좌번호 입금액 3. 출금 > 계좌번호 출금액 4. 이체 > 출금계좌번호 입금계좌번호 액수 5. 조회 > 계좌번호 6. 저장 > 파일로 일괄저장 > 계좌번호.txt > 계좌번호 파일에 통장이력은 아래와 같음 (기록시간, 입금 혹은 출금, 액수, 잔액) import datetime class Log: def __init__(self, add=0, sub=0, balance=0): self.now = datetime.datetime.now() if add: self.add = add if sub: self.sub = sub self.balance = balance def __str__(self): return f"{','.join(map(str, sel..
승하차기록파일 1. 년월, 역이름 으로 필터 2. 필터된 승하차 총합을 구함 3. plotly 설치후 그래프로 표시 def read_file(path): with open(path, "r") as f: return f.readlines() class Log: def __init__(self, date=None, line=None, station=None, in_outs=None): self.date = date self.line = line self.station = station self.in_outs = in_outs def __str__(self): return f"{self.__dict__}" @classmethod def line_to_list(cls, line): line = line.repl..
시간 데이타 파일 더보기 22 25 0 5 30 195 17 40 200 17 15 210 0 40 -50 8 40 -200 22 10 -50 2 15 910 23 20 100 10 50 -20 8 40 200 결과 더보기 22:25 8:45 21:0 20:45 23:50 5:20 21:20 17:25 1:0 10:30 12:0 def read_file(path): with open(path, "r") as f: return f.readlines() def write_file(path, lines): with open(path, "w") as f: f.writelines(lines) def lines_to_rows(lines): rows = list(map(lambda x: x.replace("\n", ..
원본, 히든 이미지 스테가노그래피 설명 Pillow 라이브러리 설치 from PIL import Image as image def encoding(dec, data): val = bin(dec)[:-1] + ("1" if data else "0") return int(val, 2) def decoding(dec): return 255 if int(bin(dec)[-1]) else 0 def encoding_pixel(color_ori, color_data): r = encoding(color_ori[0], color_data[0] if isinstance(color_data, tuple) else color_data) g = encoding(color_ori[1], color_data[1] if isin..
- Total
- Today
- Yesterday
- 플러스친구 자동응답
- virtualenv
- 파이썬 독학
- 장고 플러스친구 자동응답
- django
- 문과 코딩
- 면접답변
- GIT
- gitlab
- django chatbot
- admin.py
- 면접정답
- wsgi
- 엑셀 비교
- 모바일 테마 적용
- 파이썬 입문
- pycrypto
- 장고
- 장고 카톡 자동응답
- chatbot
- 이미지 비교
- PuTTYGen
- 모바일 스킨 적용
- 문서 비교
- 파이썬 프로그래밍
- Python
- Tistory
- gitignore
- 파이썬 강좌
- 파이썬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |