print('Hello''World')
>>> HelloWorld
How come this works, when multiple string arguments are not separated by comma? I found this unusual because, like any other function multiple parameters must be separated with commas. There should have been a syntax error.