AtCoder 용 로컬로 코드 테스트 환경 만들기 (Python, jupyter)
로컬 환경에서도 실행할 수 있도록 작성했다.
방법
코드
# セル1(関数定義)
from ipywidgets import Textarea
def input():
global input_count
input_text = Input.split('\n')[input_count]
input_count += 1
return input_text
def get_input(change):
global Input
Input=change["new"]
textarea = Textarea()
textarea.observe(get_input, names='value')
# セル2(入力テキストボックス出力)
display(textarea)
# セル3(変数のリセット)
input_count = 0
# セル4(ソースコード)
print(input())
이미지
참고
Reference
이 문제에 관하여(AtCoder 용 로컬로 코드 테스트 환경 만들기 (Python, jupyter)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ryamamon/items/15ca78a0234d9d24452d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)