Discord Python Bot - User input
问题 So I want to make a discord python bot that takes user inputs. what I want to do is count % of something. Here is what i want to do : I made this code before starting on the discord bot. But I don't know how to take user inputs. userInputOriginalPrice = float(input("Enter the original price: ")) userInputPercentage = float(input("Enter how much percantage: ")) discount = ( userInputPercentage / 100) * userInputOriginalPrice finalCost = userInputOriginalPrice - discount print("You saved",