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)
O value
Oneighborhood
Oscope
assignment