DEV Community

Cover image for Build a Simple Miles to Kilometers Converter with Python & Tkinter
Reshma
Reshma

Posted on

Build a Simple Miles to Kilometers Converter with Python & Tkinter

Build a Simple Miles to Kilometers Converter with Python & Tkinter

Check out my github repo:
Reshma-2517/miles-to-km-tkinter

Have you ever wanted to start with Python GUI development but didn’t know where to begin?
Here’s a fun little project I built: a Miles to Kilometers Converter using Tkinter, Python’s built-in GUI library.


What this project does

  • Take user input in miles
  • Convert it into kilometers using the formula:

python
kilometers = miles * 1.6
Enter fullscreen mode Exit fullscreen mode

Top comments (0)