Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- tkinter Radio 동적버튼
- for loop
- SQL
- numpy
- array
- Django
- check_password
- graphene-django
- python
- allauth
- FastAPI
- Django-allauth
- GraphQL
- flask
Archives
- Today
- Total
객
곱셈 연산 본문
#!/usr/bin/wish
proc LessTrouble {args} {
set b 0
label .label -textvariable x
set f [frame .buttons -borderwidth 10]
foreach val $args {
button $f.$b -text $val \-> 표시는 계속해서 이어진다는 것을 알려준다.
-command "UpdateX $val"
pack $f.$b -side left
incr b
}
pack .label $f
}
proc UpdateX {val} {
global x
set x [expr $x * $val]
}
set x 1
LessTrouble -1 4 7 36
그래픽 예제 프로그램 입니다.
'[PL] > Python' 카테고리의 다른 글
PIL 모듈을이용하여 이미지 처리 (0) | 2007.09.17 |
---|---|
연산 예제 프로그램 (0) | 2007.08.27 |
사전 예제 프로그램 (0) | 2007.08.27 |
짝홀수 (0) | 2007.08.24 |
사칙 연산 (0) | 2007.08.19 |