date.fromisoformat
print
input
オブジェクトを標準出力に出力します。
print(*objects, sep, end, file)
下記の値を入力するとサンプルに即時反映されます。
sep
line1
line2
print("Hello, World!") print("a", "b", "c", sep="-") # a-b-c print("line1", end=" ") print("line2") # line1 line2