원본, 히든 이미지 스테가노그래피 설명 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..
1. 남여를 매칭하는 프로그램을 만든다. 2. 이전에 매칭된 이성은 매칭하지 않는다. 3. 한번에 매칭되는 할당양을 지정한다. 4. 성비가 적은쪽은 할당양 보다 더 많이 받는다. > 예: 남=10, 여=5 일때 할당양이 2면 남자는 2, 여자는 4 정도를 받는다. 5. 어떤 사람이 많이 매칭되고 어떤사람이 적게 매칭되지 않게 균일하게 매칭한다. import random class User: def __init__(self, _id=None, gender=None, history_users_group=None): self.id = _id self.gender = gender self.history_users_group = history_users_group if history_users_group else..
아래와 같은 연산을 하는 함수를 작성한다. 더보기 입력출력 결과 input > 123, 11 output > 132131 input > 144345, 13 output > 12433251 input > 153, 12 output > 12513121 def add(a, b): return str(a) + str(b) def count(t, s): return f"{t}{s.count(t)}" def remove(t, s): return s.replace(t, "") def foo(a, b): r = "" s = add(a, b) while s: r += count(s[0], s) s = remove(s[0], s) return int(r) print(foo(11, 14))
- Total
- Today
- Yesterday
- 면접답변
- gitignore
- 모바일 스킨 적용
- 면접정답
- django chatbot
- 장고 카톡 자동응답
- gitlab
- 파이썬 강좌
- 파이썬
- 문과 코딩
- 플러스친구 자동응답
- 장고
- 파이썬 프로그래밍
- chatbot
- Tistory
- Python
- django
- GIT
- 이미지 비교
- 모바일 테마 적용
- 장고 플러스친구 자동응답
- wsgi
- 파이썬 입문
- PuTTYGen
- 엑셀 비교
- pycrypto
- 문서 비교
- virtualenv
- admin.py
- 파이썬 독학
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |