I have some code like:
usernames = ('admin', 'Jaden', 'Milky', 'Huff')
for username in usernames:
if username == 'admin':
print("Hello", username.title(),', thanks for coming')
else:
print("Sup", username.title(), 'How you feeling?')
which outputs:
Hello Admin , thanks for coming
Sup Jaden How you feeling?
Sup Milky How you feeling?
Sup Huff How you feeling?
How do I get the comma to sit where it should after Admin
, without a space in between?