We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
입력
import sys input = sys.stdin.readline a = input() # 입력
list to String
list = ["a", "b", "c"] str(list) # [a, b, c] ", ".join(list) # a, b, c
f-string
name = "tonic" f"내 이름은 {name}이야" # 내 이름은 tonic이야
There was an error while loading. Please reload this page.