Menu
Coddy logo textTech

Getting Input

Part of the Fundamentals section of Coddy's Python journey. Lesson 31 of 77.

challenge icon

Challenge

Beginner

Keep the welcome message you printed in the previous step (Bill Split Calculator). After it, read two numbers (float) from the user: the bill amount first, then the tip percentage.

Read them with a plain input(). Do not pass a prompt text to input(): the prompt would be printed too and the output would no longer match.

Try it yourself

print("Bill Split Calculator")

All lessons in Fundamentals

Practice on your own: Online Python compiler