77.2k views
0 votes
Dwayne wants a variable called "name" to appear in the interpreter and does not want a space after it. Which of these should be used to make that happen? Name, name) name+ name.

User Bhalothia
by
5.3k points

1 Answer

1 vote

Answer:

name + name

Step-by-step explanation:

When assigning values to a Variable in python, the + operator sums the values assigned to the variable into a single value hence there won't be any space between the values assigned .

Name + Name = NameName in python programming

User Bklyn
by
5.3k points