亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

python 實現一個圖形界面的匯率計算器

瀏覽:2日期:2022-07-06 08:32:53

調用的api接口:

https://api.exchangerate-api.com/v4/latest/USD

python 實現一個圖形界面的匯率計算器

完整代碼

import requestsfrom tkinter import *import tkinter as tkfrom tkinter import ttkclass RealTimeCurrencyConverter(): def __init__(self,url): self.data = requests.get(url).json() self.currencies = self.data[’rates’] def convert(self, from_currency, to_currency, amount): initial_amount = amount if from_currency != ’USD’ : amount = amount / self.currencies[from_currency] amount = round(amount * self.currencies[to_currency], 4) return amountclass App(tk.Tk): def __init__(self, converter): tk.Tk.__init__(self) self.title = ’Currency Converter’ self.currency_converter = converterself.geometry('500x200') self.intro_label = Label(self, text = ’Welcome to Real Time Currency Convertor’, fg = ’blue’, relief = tk.RAISED, borderwidth = 3) self.intro_label.config(font = (’Courier’,15,’bold’)) self.date_label = Label(self, text = f'1 Indian Rupee equals = {self.currency_converter.convert(’INR’,’USD’,1)} USD n Date : {self.currency_converter.data[’date’]}', relief = tk.GROOVE, borderwidth = 5) self.intro_label.place(x = 10 , y = 5) self.date_label.place(x = 160, y= 50)valid = (self.register(self.restrictNumberOnly), ’%d’, ’%P’) self.amount_field = Entry(self,bd = 3, relief = tk.RIDGE, justify = tk.CENTER,validate=’key’, validatecommand=valid) self.converted_amount_field_label = Label(self, text = ’’, fg = ’black’, bg = ’white’, relief = tk.RIDGE, justify = tk.CENTER, width = 17, borderwidth = 3)self.from_currency_variable = StringVar(self) self.from_currency_variable.set('INR') self.to_currency_variable = StringVar(self) self.to_currency_variable.set('USD') font = ('Courier', 12, 'bold') self.option_add(’*TCombobox*Listbox.font’, font) self.from_currency_dropdown = ttk.Combobox(self, textvariable=self.from_currency_variable,values=list(self.currency_converter.currencies.keys()), font = font, state = ’readonly’, width = 12, justify = tk.CENTER) self.to_currency_dropdown = ttk.Combobox(self, textvariable=self.to_currency_variable,values=list(self.currency_converter.currencies.keys()), font = font, state = ’readonly’, width = 12, justify = tk.CENTER)self.from_currency_dropdown.place(x = 30, y= 120) self.amount_field.place(x = 36, y = 150) self.to_currency_dropdown.place(x = 340, y= 120)self.converted_amount_field_label.place(x = 346, y = 150) self.convert_button = Button(self, text = 'Convert', fg = 'black', command = self.perform) self.convert_button.config(font=(’Courier’, 10, ’bold’)) self.convert_button.place(x = 225, y = 135) def perform(self): amount = float(self.amount_field.get()) from_curr = self.from_currency_variable.get() to_curr = self.to_currency_variable.get() converted_amount = self.currency_converter.convert(from_curr,to_curr,amount) converted_amount = round(converted_amount, 2) self.converted_amount_field_label.config(text = str(converted_amount)) def restrictNumberOnly(self, action, string): regex = re.compile(r'[0-9,]*?(.)?[0-9,]*$') result = regex.match(string) return (string == '' or (string.count(’.’) <= 1 and result is not None))if __name__ == ’__main__’: url = ’https://api.exchangerate-api.com/v4/latest/USD’ converter = RealTimeCurrencyConverter(url) App(converter) mainloop()

運行效果:

python 實現一個圖形界面的匯率計算器

以上就是python 實現一個圖形界面的匯率計算器的詳細內容,更多關于python 匯率計算的資料請關注好吧啦網其它相關文章!

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 看看免费a一片欧 | 亚洲精品影院一区二区 | 日本成片 | 国产一级毛片亚洲久留木玲 | 国产性高清在线观看 | 深夜偷偷看视频在线观看 | 精品视频在线观看一区二区 | 亚洲网在线观看 | 欧美亚洲国产精品久久蜜芽 | 成年黄页网站视频全免费 | 欧美一级在线观看视频 | 日韩国产综合 | 日韩欧美在线中文字幕 | 一级特黄aaa大片在线观看视频 | www亚洲一区 | 性视频亚洲 | 毛片免费观看的视频在线 | 国产三级精品三级在线观看 | 国产成人精品免费 | 久久久999久久久精品 | 女人被男人狂躁的免费视频 | 成人亚洲天堂 | 久久免费视频1 | 亚洲精品一级一区二区三区 | 高清欧美一区二区三区 | 清纯唯美亚洲综合日韩第 | 国产日韩欧美精品一区二区三区 | 国产精品yjizz视频网一二区 | 成年人视频黄色 | 亚洲欧洲精品视频在线观看 | 国产成人污污网站在线观看 | 日韩中文字幕电影在线观看 | 国产日韩一区在线精品欧美玲 | 免费国产在线视频 | 一区二区不卡视频在线观看 | 国产亚洲精品美女久久久久 | 日韩精品一区二区三区 在线观看 | 久久中文字幕视频 | 国产一区二区不卡免费观在线 | 黄色一级播放 | 欧美黑人巨大白妞出浆 |