asked 102k views
2 votes
In Python, an equal symbol (=) is used to concatenate two or more strings.

True

False

asked
User Renan
by
8.4k points

1 Answer

0 votes
False

In Python, an equal sign is used to assign a variable. Ex: my_money = 27

To concatenate, you would simply use a +. Ex: amount_for_babysitting = 10
my_money + amount_for_babysitting
answered
User Jseth
by
8.5k points

Related questions