python
pythonのコードを打とう
制作途中です
関連タイピング
-
英数と記号を混ぜた文章です
プレイ回数2134 英語長文1468打 -
HTML&CSSを忘れないために
プレイ回数3万 英語長文759打 -
プログラミングの魅力についての長文です。
プレイ回数386 長文1119打 -
プログラミングの知識とタイピング能力を上げよう!
プレイ回数791 長文30秒 -
AI対戦のマルバツゲームのコードです。
プレイ回数379 英語長文1065打 -
インストールは速度が大事
プレイ回数324 英語11打 -
JAVAの練習用です。
プレイ回数2243 長文120秒 -
python 基本
プレイ回数1564 英字120打
問題文
ふりがな非表示
ふりがな表示
(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)