#Looking for a simple fix
5 messages · Page 1 of 1 (latest)
What errors are you getting?
I don't think I worded this just right but I got help from someone else, I was looking to have an input line followed by a percent sign after the user typed in an amount: "Please enter percent: ___ %"
From what I understood from your doubt it would be to simplify, one of the ways if it is this would be:
percent = input("Please enter percent: ")
print("You entered: " + percent + "%")
This will display the input prompt "Please enter percent: " for the user to enter a value, and then it will display "You entered: [user input]%" with the entered value and the % symbol.
it was my mistake thinking it was a "simple" fix haha, i got it too work though thank you!