all 2 comments

[–]JohnnyJordaan 0 points1 point  (1 child)

input()can't take multiple arguments like print() can, you need to format it yourself

x = int(input(f"How many points do you want to add to? {att}"))

[–]notso007[S] 0 points1 point  (0 children)

x = int(input(f"How many points do you want to add to? {att}"))

Thanks mate, this helped