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
- assignment operator
- vscode
- 오블완
- array
- 티스토리챌린지
- baekjoon
- predictive analysis
- string
- Object Oriented Programming
- 포인터
- pass by reference
- 알고리즘
- function
- 파이썬
- 반복문
- Deep Learning
- C++
- const
- Pre-processing
- pointer
- OOP
- 문자열
- raw data
- programming
- Python
- Class
- 함수
- Data Science
- 백준
- 배열
Archives
- Today
- Total
목록tkinter (1)
Channi Studies
python의 tkinter 모듈을 사용해서 단위 변환기를 만들어 보자. 아직 tkinter 모듈을 처음 공부하는 중이기 때문에, 간단하게 구현해보았다. 1. miles to km, km to miles 2가지 옵션 구현 2. 버튼을 누를 시 계산이 완료되어 완료 값이 출력 코드 from tkinter import * window = Tk() FONT = ("Arial", 20) from_unit = "miles" to_unit = "km" window.title("Unit Converter") window.minsize(width="250", height="100") window.config(padx=50, pady=25) # Label from_label = Label(text=f"{from_unit..
python
2023. 10. 10. 22:52