I want to join a users input to a string. My code is:
def Username():
Name = ("Name:")
Name.join(input("What's your Dicer's name?:\n"))
print(Name)
Username()
If I were to input the name 'Bradley' for input() here is the results:
What's your Dicer's name?:
Bradley
Name:
It didn't print what I wanted it to print even though I clearly joined the input with "Name:". Here is what I was expecting
What's your Dicer's name?:
Bradley
Name: Bradley
If you can tell me why ^ is not occurring I would really appreciate it. Thanks!