Exercise: Concatenate strings I
Use the + operator to concatenate a and b.
a = 'Pro'
b = 'gramming'
text =
print(text)
Python
Setting up Python environment...
Output
a = 'Pro'
b = 'gramming'
text =
print(text)
Setting up Python environment...