Real Time Currency Convertor
Real Time Currency Convertor
PROJECT
: Real time currency convertor :
Prerequisites:
Python offers multiple options for developing GUI (Graphical User Interface).
Out of all the GUI methods, tkinter is the most commonly used method. It is
a standard Python interface to the Tk GUI toolkit shipped with Python. Python
with tkinter outputs the fastest and easiest way to create the GUI
applications.
Below is the implementation :
# import all functions from the tkinter
from tkinter import *
# currency code
from_currency = variable1.get()
to_currency = variable2.get()
# Driver code
if __name__ == "__main__" :
button1.grid(row = 4, column = 1)