Question #210

Author: admin
tags: Python  
str1 = 'a' 'b'
str2 = str1 'c'
print(str2)
What will be printed?
a
ab
ac
abc
SyntaxError
Rate the difficulty of the question:
easyhard