python
pythonのコードを打とう
制作途中です
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | kawakawa | 666 | G | 0.7 | 88.4% | 60.0 | 46 | 6 | 3 | 2026/09/12 |
関連タイピング
-
プログラミングを効率的に!
プレイ回数1208 英語短文541打 -
HTML&CSSを忘れないために
プレイ回数3万 英語長文759打 -
プログラミングの知識とタイピング能力を上げよう!
プレイ回数811 長文30秒 -
ホームポジションが自然と身につく!
プレイ回数2637 短文60秒 -
プレイ回数2.2万 英字60秒
-
プログラミングタイピング
プレイ回数1698 英字60秒 -
Pythonプログラムを打ちまくる
プレイ回数1.3万 英語長文60秒 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数4626 短文英字429打
問題文
ふりがな非表示
ふりがな表示
(print(”hello, world!”))
print("Hello, world!")
(print(”hello, world!”, 123))
print("Hello, world!", 123)
(print(”hello, world!”, 1, sep=”¥n”))
print("Hello, world!", 1, sep="\n")
(# comment)
# comment
(print(a + b))
print(a + b)
(print(a - b))
print(a - b)
(print(a * b))
print(a * b)
(print(a // b))
print(a/ b)
(print(a / b))
print(a b)
(print(a ** b))
print(a ** b)
(print(a % b))
print(a % b)
(x += 3)
x += 3
(x -= 3)
x -= 3
(x *= 3)
x *= 3
(x /= 3)
x= 3
(x //= 3)
x/= 3
(x **= 3)
x **= 3
(x %= 3)
x %= 3
(x, y = 2, 3)
x, y = 2, 3
(x = input())
x = input()
など
(x = int(input()))
x = int(input())
(x, y, z = input().split())
x, y, z = input().split()
(x = float(input()))
x = float(input())
(a, b, c = map(int, input().split()))
a, b, c = map(int, input().split())
(a, b, c = input().split(”:”))
a, b, c = input().split(":")
(x == y)
x == y
(x != y)
x != y
(x > y)
x > y
(x < y)
x < y
(x >= y)
x >= y
(x <= y)
x <= y
(if x == y:
print(a))
if x == y:
print(a)
(elif x != y:
print(b))
elif x != y:
print(b)
(else:
print(a + b))
else:
print(a + b)
(if not x == y:
print(a))
if not x == y:
print(a)
(if 0 <= x and x <= 100:
print(a))
if 0 <= x and x <= 100:
print(a)
(if x == 10 or y == 10:
print(a))
if x == 10 or y == 10:
print(a)