Inspiration
What it does It splits a bill into the user provided number of persons.
How we built it It is built using python.
Challenges we ran into
Accomplishments that we're proud of
What we learned
What's next for Bill Splitter
#Program to split bills.
a = float(input("Enter the amount you want to split: "))
b = int(input("Enter number of persons: "))
c = a/b
print("Splitting up the bill.....")
print("Everyone has to pay:",c)
Built With
- pycharm
- python
Log in or sign up for Devpost to join the conversation.