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
- Object Oriented Programming
- raw data
- OOP
- C++
- string
- programming
- function
- pass by reference
- const
- baekjoon
- 배열
- 문자열
- 백준
- pointer
- assignment operator
- predictive analysis
- Pre-processing
- Deep Learning
- Class
- 반복문
- array
- 함수
- 티스토리챌린지
- 알고리즘
- 파이썬
- 오블완
- vscode
- 포인터
- Python
- 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