- test.pyを置き換える
- main.pyを実行
- out
- test
- input.txt
- main.py
- README.md
- test.py
- test関数
- input
- input_text:str 問題文
- output
- str 回答
- 例
def test(input_text:str) -> str: return "Hello, " + input_text
- input
- encoding: utf-8
- 英数字記号: 半角
- ひらがなカタカナ漢字: 全角
- ファイル: test/input.txt
- 1行に1つの問題
- strip(前後の空白等の削除)のみ行い、test関数へ渡される