I'm still only learning the basics of Python, but my code is this:
name = input("Hi, what is your name? ")
print("Hi,", str(name), ". We need to check your funds for all your drinking,", name, ".")
When I run it, I type in 'Bojack' (without the quote marks) but it'll always come back with:
Hi, Bojack . We need to check your funds for all your drinking, Bojack .
How do I resolve this?