from flask import Flask, request, render_template, redirect, url_for, sessionimport randomimport sqlite3import osimport webbrowserapp = Flask(__name__)app.secret_key = os.urandom(32)DATABASE = "scores.db"PROVERBS_FILE = 'static/사자성어.txt'# 파일 읽기with open(PROVERBS_FILE, 'r', encoding='utf-8') as file: lines = file.readlines()# 사자성어와 설명을 분리하여 저장proverbs = {}for line in lines: parts = line.str..
import randomfrom colorama import init, Fore, Styleimport webbrowserimport sqlite3init()# 파일 읽기file_path = 'D:\\최정훈\\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 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..
import random import sys from datetime import datetime print("헬로~ 키즈초이!! 오랜만이야~") print("나는 이제 너의 이름을 외워버렸다고") print("아직 어린아이가 나의 퀴즈를 다 풀다니 엄청나군.") none = input("오늘이 몇월 몇일이더라? ") today = datetime.today().date() print(f"\n하하. 오늘은 {today} 라구!" ) print("네가 기다리고 있는 날짜를 입력해볼래?") input_date_str = input("날짜를 YYYY-MM-DD (2024-01-01) 형식으로 입력하세요: ") try: input_date = datetime.strptime(input_date_str, '%Y-..
import random import sys 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"{int(digit)}*10^{len(digits..
#python 3.7.1 import sys print("하하 나는 퀴즈 마스터 오리지날초이 라네") print("자네의 이름은 무엇인가?") name=input("입력 : ") print("\n오.. " + name + " 반갑네\n") print("이제 자네에게 특별한 퀴즈를 내주지") print("맞출 수 있겠나?") text=input("입력 : ") print("\n좋아. 2를 2번 곱하면 4") print("2를 3번 곱하면 8이라네") print("그렇다면 2를 4번 곱하면 몇일까?") answer=input("입력 : ") if(answer == "16"): print("\n이 문제를 맞추다니.. 훌륭하네. 자넨 나의 진짜 문제에 도전할 수 있겠군..") else: print("\n이런 문..
- Total
- Today
- Yesterday
- Linux
- 웹보안
- 풀이
- Encode
- OverTheWire
- java
- gz
- 웹보안공부
- tr
- Natas
- 리터럴
- Bandit
- tar
- solution
- nc
- ssh
- 압축파일
- X32
- over the wire
- bz2
- OpenSSL
- Strings
- 리눅스
- find
- SSL
- natas7
- 32bit
- grep
- HTTPS
- BASE64
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |