Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 66e57be

Browse files
authored
Update and rename M05_Ch13Ex4.py to main.py
- Made the code's readability better before archiving. - Renamed the file to main.py - "censored" the name... I mean if you really want to see my name then you can revert the thing back in time.
1 parent 9e13b7a commit 66e57be

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

M05_Ch13Ex4.py main.py

+15-4
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,15 @@ def __init__(self):
1515

1616

1717
# Name Row
18-
self.name_label = tkinter.Label(self.name_frame,text="Cameron Harter",relief='solid')
18+
self.name_label = tkinter.Label(self.name_frame,text="MontyMango",relief='solid')
1919

2020
# Pack Name Row
2121
self.name_label.pack()
22-
2322

2423
# Fahrenheit Row
2524
self.fahrenheit_label = tkinter.Label(self.fahrenheit_frame,text="Fahrenheit or Celcius:")
2625
self.Far_to_Cel = tkinter.Button(self.fahrenheit_frame,text='F° -> C°', command=self.F_to_C)
2726

28-
2927
# Pack Fahrenheit Row
3028
self.fahrenheit_label.pack(side='left')
3129
self.Far_to_Cel.pack(padx=(17,0),side='left')
@@ -37,7 +35,6 @@ def __init__(self):
3735
# Pack Celsius Row
3836
self.number_input.pack(padx=(40,29),side='left')
3937
self.Cel_to_Far.pack(padx=(0,25),side='left')
40-
4138

4239
# Buttons Row
4340
self.Quit = tkinter.Button(self.button_frame,text='Quit',command=self.main_window.destroy)
@@ -46,14 +43,20 @@ def __init__(self):
4643
self.Quit.pack(side='right')
4744

4845

46+
4947
# Pack Frames
5048
self.name_frame.pack(padx=100,pady=(0,15))
5149
self.fahrenheit_frame.pack()
5250
self.celsius_frame.pack(pady=(0,15))
5351
self.button_frame.pack()
5452

53+
54+
5555
tkinter.mainloop() # Main loop
5656

57+
58+
59+
# Function converts celsius to fahrenheit
5760
def C_to_F(self):
5861
try:
5962
celsius = float(self.number_input.get())
@@ -64,6 +67,9 @@ def C_to_F(self):
6467
except ValueError:
6568
self.Error_Message()
6669

70+
71+
72+
# Function converts fahrenheit to celsius
6773
def F_to_C(self):
6874
try:
6975
fahrenheit = float(self.number_input.get())
@@ -74,8 +80,13 @@ def F_to_C(self):
7480
except ValueError:
7581
self.Error_Message()
7682

83+
84+
7785
def Error_Message(self):
7886
tkinter.messagebox.showinfo('Error!','The values that you put in didn\'t work.\nPlease try again!')
7987

88+
89+
8090
if __name__ == '__main__':
8191
TC = Temperature_Converter()
92+

0 commit comments

Comments
 (0)