0
0

Pythonで文字列変数から標準入力を受け取るメモ

Last updated at Posted at 2024-02-13

文字列変数から標準入力を受け取る

import sys
import io

_TEXT = """\
1 2 3
"""

sys.stdin = io.StringIO(_TEXT)
N = input()
print(N)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0