👤

The part of the program where strFirst can be used or changed describes its _____.

def username (strFirst, strLast):
return strFirst[0] + strLast

def username (strFirst, strLast):
return strFirst + strLast[0]

answer = username ('Joann', 'Doe')
print (answer)


neighborhood
neighborhood

scope
scope

value
value

assignment
assignment

Answer :