![](http://i1.daumcdn.net/thumb/C148x148.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/Jpl6H/btsA8szpZXR/IGkXWH6xuVVwGfikkPvVak/img.png)
import random from colorama import init, Fore, Back, Style import webbrowser init() # 파일 읽기 file_path = 'C:\\Users\\USER\\Dropbox\\vscode project\\python sia quiz\\사자성어 퀴즈\\사자성어.txt' with open(file_path, 'r', encoding='utf-8') as file: lines = file.readlines() # 사자성어와 설명을 분리하여 저장 proverbs = {} for line in lines: parts = line.strip().split(':') if len(parts) == 2: proverbs[parts[0].strip()] = par..
import random from colorama import init, Fore, Back, Style init() # 파일 읽기 file_path = 'C:\\Users\\USER\\Dropbox\\vscode project\\python sia quiz\\사자성어 퀴즈\\사자성어.txt' with open(file_path, 'r', encoding='utf-8') as file: lines = file.readlines() # 사자성어와 설명을 분리하여 저장 proverbs = {} for line in lines: parts = line.strip().split(':') if len(parts) == 2: proverbs[parts[0].strip()] = parts[1].strip() # 랜덤..
import random import sys # 함수 정의: 10진수를 2진수로 변환하는 함수 def decimal_to_binary(decimal_number): binary_number = bin(decimal_number)[2:] # '0b'를 제거한 2진수 변환 return binary_number def explain_decimal_composition(decimal_number): explanation = "" digits = str(decimal_number) #196 for i, digit in enumerate(digits): if i == len(digits) - 1: # 3-1 == 2 explanation += f"{int(digit)}*1" else: explanation += f..
- Total
- Today
- Yesterday
- 웹보안공부
- tr
- 압축파일
- gz
- Natas
- ssh
- X32
- nc
- java
- find
- natas7
- Strings
- tar
- 리터럴
- solution
- SSL
- Bandit
- BASE64
- 웹보안
- Linux
- grep
- Encode
- HTTPS
- 32bit
- 리눅스
- OpenSSL
- OverTheWire
- bz2
- 풀이
- over the wire
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |