- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
#-*- coding:cp1251 -*-
from Tkinter import *
""" pyCalc by deluxe, thanks to Sanch0
Калькулятор работает только с 2 числами и одним действием над ними."""
# глобальные переменные
x1=''
x2=''
deistvie=''
# функции батонов ввода цифр и запятой
# если действие еще не задано, заполняется х1, а если задано - х2
# и значение переменной отражается на соотв. виджете
def press1():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'1'
lblx1.configure(text=x1)
else:
x2=x2+'1'
lblx2.configure(text=x2)
def press2():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'2'
lblx1.configure(text=x1)
else:
x2=x2+'2'
lblx2.configure(text=x2)
def press3():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'3'
lblx1.configure(text=x1)
else:
x2=x2+'3'
lblx2.configure(text=x2)
def press4():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'4'
lblx1.configure(text=x1)
else:
x2=x2+'4'
lblx2.configure(text=x2)
def press5():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'5'
lblx1.configure(text=x1)
else:
x2=x2+'5'
lblx2.configure(text=x2)
def press6():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'6'
lblx1.configure(text=x1)
else:
x2=x2+'6'
lblx2.configure(text=x2)
def press7():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'7'
lblx1.configure(text=x1)
else:
x2=x2+'7'
lblx2.configure(text=x2)
def press8():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'8'
lblx1.configure(text=x1)
else:
x2=x2+'8'
lblx2.configure(text=x2)
def press9():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'9'
lblx1.configure(text=x1)
else:
x2=x2+'9'
lblx2.configure(text=x2)
def press0():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'0'
lblx1.configure(text=x1)
else:
x2=x2+'0'
lblx2.configure(text=x2)
def pressdot():
global x1, deistvie, x2
if deistvie=='':
x1=x1+'.'
lblx1.configure(text=x1)
else:
x2=x2+'.'
lblx2.configure(text=x2)