Skip to content

Instantly share code, notes, and snippets.

@misora192
misora192 / quiz.py
Created March 21, 2022 13:49
https://daeudaeu.com/tkinter_quiz/ の写経です。Pythonのtkinterでクイズアプリを作りました。
import csv
import random
import tkinter
from tkinter import messagebox
# https://daeudaeu.com/tkinter_quiz/
CSV_FILE = "quiz.csv"
class Quiz():
@misora192
misora192 / stopwatch.py
Created March 18, 2022 13:14
Pythonのtkinterでストップウォッチを作りました。https://daeudaeu.com/stopwatch/ のコピーですが、リセットボタンを追加しました。
import tkinter
import time
# https://daeudaeu.com/stopwatch/
INTERVAL = 5
start_time = 0
start_flg = False
after_id = 0
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@misora192
misora192 / mywebpagev2.html
Created February 3, 2019 08:27
Udemy見て自分で作ったやつ
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/DrDm7uO4Fu0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</p>