133,653 views
15 votes
15 votes
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)

User Ayush Mishra
by
2.8k points

1 Answer

24 votes
24 votes

Answer:

def username (strFirst, strLast):

return strFirst[0] + strLast

Step-by-step explanation:

User Vinzdef
by
2.9k points