スリープする sleep 1件のフィードバック >>> import time >>> time.sleep(3) time.sleepで指定した秒数スリープできる。 1秒以下のスリープは少数で指定可能。 関連記事: 現在時刻 ⇔ ( エポック秒 / UNIX時間 ) ⇔ datetime pythonで並列処理 (thread) シーケンス操作 list asyncio 非同期IOの基本 文字列の置換 (単純置換・正規表現置換) re.sub replace regexp
wpqpqwww 2016/09/16 21:05 #タイピング.py def iss(): from tkinter import* import random def lhss(): bb = 1 lists = [‘import’, ‘the inter’, ‘input()’, ‘1*10*100*1000’, ‘rannrannru-‘, ‘atom’, ‘the end’, ‘atohokanimotuikasareruyo’] def tss(): window = Tk() zahyou = 500 random.shuffle(lists) window.title(‘タイピング’) c = Canvas(window, width=zahyou, height=zahyou, bg=’blue’) c.pack() bn = Button(window, text = ‘ok’).place(x=zahyou-50, y=zahyou-50) l = Text(window, text=lists[int([bb])].place(x=zahyou/2, y=zahyou/2) iss() lhss() tss() input() をatomでやってエラーが出ますどうしたらいいでしょうか 返信 ↓
#タイピング.py
def iss():
from tkinter import*
import random
def lhss():
bb = 1
lists = [‘import’, ‘the inter’, ‘input()’, ‘1*10*100*1000’, ‘rannrannru-‘, ‘atom’, ‘the end’, ‘atohokanimotuikasareruyo’]
def tss():
window = Tk()
zahyou = 500
random.shuffle(lists)
window.title(‘タイピング’)
c = Canvas(window, width=zahyou, height=zahyou, bg=’blue’)
c.pack()
bn = Button(window, text = ‘ok’).place(x=zahyou-50, y=zahyou-50)
l = Text(window, text=lists[int([bb])].place(x=zahyou/2, y=zahyou/2)
iss()
lhss()
tss()
input()
をatomでやってエラーが出ますどうしたらいいでしょうか