STRING ADDITION IN PYTHON – CONCATENATION

Photo of author

By Jackson Taylor

Program
a=’222′;
b=’333′;
print b+a;
a=’EMER’;
b=’GING’;
print a+b;