Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例:
>>> print "How do you do"
として印刷されます
'How do you do'
また
>>> x = "How do you do" >>> print x 'How do you do'
Pythonの学習を始めたばかりです。私の印刷コマンドはすべてこのようになっています。私は何をしますか?
>>> x = "How do you do" >>> x 'How do you do' # representation of x >>> print x How do you do # printed version of x