[python] 문자열 연산 정리

>>> print 'Hello'
Hello
>>> print "Hi there!"
Hi there!
>>> a = 'My name is '
>>> n = 'Victor'
>>> print a+n
My name is Victor

Leave a Reply