Adding a value with .append() places it at the end of the list. We can see the result here by coding print(users).
.append()
print(users)
Make sure to pick print followed by ( and then users, ).
print
(
users
)