Currency Converter Project
Currency Converter Project
Submitted by:
Class: 11th B
A currency converter is a tool that allows users to convert one currency to another based on current
exchange rates. It is widely used in businesses, travel, and international trade. This project
demonstrates a basic currency converter using programming concepts from Informatics Practices.
Technical Details
3. **Algorithm**:
4. **Features**:
- User-friendly interface
def convert_currency():
c = CurrencyRates()
amount = float(amount_entry.get())
from_currency = from_entry.get()
to_currency = to_entry.get()
# GUI Setup
root = Tk()
root.title('Currency Converter')
amount_entry = Entry(root)
amount_entry.grid(row=0, column=1)
from_entry = Entry(root)
from_entry.grid(row=1, column=1)
to_entry = Entry(root)
to_entry.grid(row=2, column=1)
result_label.grid(row=4, column=1)
root.mainloop()
Conclusion
This project highlights the application of Python programming in developing a functional and
user-friendly currency converter. It demonstrates the use of external libraries, GUI development, and
real-time data integration. Such projects are valuable for understanding practical applications of
coding skills.