I'm looking for a more 'dumbed-down' version of a solution to this issue I have. Below is the code I have.
I'm trying to allow for both the % symbol and simply a number as input for the percentage from user.anyone that can help me would have to write this out for me more than the previous examples explain please.
#104 Percentages
print('#104 Percentages')
percent = float(input('Enter percentage: '))
decimal = percent/100
print('Equivalent decimal:',round(decimal,2))
print()