File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 16
16
n2 = float (input ('{0} Enter The 2st Number: ' . format (cmd )))
17
17
process = input ('{0} Enter the Transaction You Want to Perform: ' . format (cmd ))
18
18
if process == "1" :
19
- addition (n1 ,n2 )
19
+ Addition (n1 ,n2 )
20
20
elif process == "2" :
21
21
Extraction (n1 ,n2 )
22
22
elif process == "3" :
26
26
elif process == "5" :
27
27
Percentage (n1 ,n2 )
28
28
else :
29
- error_msg ()
29
+ error_msg (error_dialog )
Original file line number Diff line number Diff line change 16
16
s2 = float (input ('{0} 2. sayiyi giriniz: ' . format (cmd )))
17
17
islem = input ('{0} Gerçekleştirmek İstediğiniz İşlemi Giriniz: ' . format (cmd ))
18
18
if islem == "1" :
19
- addition (s1 ,s2 )
19
+ Addition (s1 ,s2 )
20
20
elif islem == "2" :
21
21
Extraction (s1 ,s2 )
22
22
elif islem == "3" :
26
26
elif islem == "5" :
27
27
Percentage (s1 ,s2 )
28
28
else :
29
- error_msg ()
29
+ error_msg (error_dialog )
You can’t perform that action at this time.
0 commit comments