filmov
tv
How to make a simple calculator in python (code in desc.) #shorts #code #vscode #python

Показать описание
Here is the python script!:
import tkinter as tk
def on_click(button_text):
def on_clear():
def on_equal():
try:
except Exception as e:
window = tk.Tk()
entry = tk.Entry(window, width=20, font=("Arial", 28), borderwidth=2, relief="solid", justify="right", bd=10)
button_style = {
"font": ("Arial", 18),
"width": 5,
"height": 2,
"bd": 5,
"relief": "raised",
"bg": "#4C5C68",
"fg": "#fff",
"activebackground": "#2C3E50",
"activeforeground": "#fff"
}
buttons = [
('7', 1, 0), ('8', 1, 1), ('9', 1, 2), ('/', 1, 3),
('4', 2, 0), ('5', 2, 1), ('6', 2, 2), ('*', 2, 3),
('1', 3, 0), ('2', 3, 1), ('3', 3, 2), ('-', 3, 3),
('0', 4, 0), ('.', 4, 1), ('=', 4, 2), ('+', 4, 3),
('C', 5, 0)
]
for (text, row, col) in buttons:
if text == '=':
button = tk.Button(window, text=text, **button_style, command=on_equal)
elif text == 'C':
button = tk.Button(window, text=text, **button_style, command=on_clear)
else:
button = tk.Button(window, text=text, **button_style, command=lambda t=text: on_click(t))
import tkinter as tk
def on_click(button_text):
def on_clear():
def on_equal():
try:
except Exception as e:
window = tk.Tk()
entry = tk.Entry(window, width=20, font=("Arial", 28), borderwidth=2, relief="solid", justify="right", bd=10)
button_style = {
"font": ("Arial", 18),
"width": 5,
"height": 2,
"bd": 5,
"relief": "raised",
"bg": "#4C5C68",
"fg": "#fff",
"activebackground": "#2C3E50",
"activeforeground": "#fff"
}
buttons = [
('7', 1, 0), ('8', 1, 1), ('9', 1, 2), ('/', 1, 3),
('4', 2, 0), ('5', 2, 1), ('6', 2, 2), ('*', 2, 3),
('1', 3, 0), ('2', 3, 1), ('3', 3, 2), ('-', 3, 3),
('0', 4, 0), ('.', 4, 1), ('=', 4, 2), ('+', 4, 3),
('C', 5, 0)
]
for (text, row, col) in buttons:
if text == '=':
button = tk.Button(window, text=text, **button_style, command=on_equal)
elif text == 'C':
button = tk.Button(window, text=text, **button_style, command=on_clear)
else:
button = tk.Button(window, text=text, **button_style, command=lambda t=text: on_click(t))
3-Ingredient Oreo Cake! tutorial #Shorts
How to Make Simple Syrup | Patrón Tequila
How To Make 2 Ingredients Slime At Home, Satisfied Crush Edition
3-Ingredient Nutella Cookies! Recipe tutorial #Shorts
How to make simple easy bow 🎀 How to tie a perfect bow!
3 Ingredient Mac and Cheese (Delicious)
How to Make a Simple Paper Airplane
How to Make a SIMPLE Paper Airplane that Flies Far
Easy paper cup craft #diy #art #craft #flowers #foryou #papercraft #simple #paper #easy #shorts#yt
How To Make Easy Caramel Sauce | Eitan Bernath
3-Ingredient Oreo Ice Cream! Recipe tutorial #Shorts
NO GLUE SLIME Recipes That ACTUALLY WORK! 😱🤫 *How to Make Slime WITHOUT Glue and Activator DIY*...
Nutella Soufflé Recipe #shorts
4-ingredient Mini Oreo Cakes for two! Tutorial
How to Make an Easy Paper Airplane in 1 Minute! (60 Seconds) Competition Winner — Flies 100+ Feet!
how i make a simple 3 egg omelette
How to make No Bake Cookie Dough! tutorial
How to make lavender simple syrup #coffee
I Made Slime with NO GLUE & ACTIVATOR! 😱🤨 How to Make Slime WITHOUT Glue & Activator at Home...
How to Make a Breakfast Smoothie (Ramadan Recipe)
Tutorial: the perfect sunnyside egg
Easy Scrambled Eggs For Students
Make doughnuts easily at home!
Easiest way to make Caramel...
Комментарии