2016-11-07 1 views

답변

3

사용 repr() 인쇄하기 내용 등 :

>>> print(repr(name)) 
'grok' 

대신 :

>>> print(name) 
grok 
관련 문제