라이브러리
-
Python: Window programming Tkinter 라이브러리 정리 2Python 2021. 4. 16. 19:50
Python: Window programming Tkinter 라이브러리 정리 1 1. 윈도창 조절 from tkinter import * # Tk객체 생성 window =Tk() window.title("연습하기") # 기본창 사이즈 window.geometry("400x100") # 창 크기 조절하.. seungjuitmemo.tistory.com 1. 마우스 이벤트 처리 from tkinter import * from tkinter import messagebox def clickLeft(event): messagebox.showinfo("마우스", "마우스 왼쪽 버튼이 클릭됨") def clickRight(event): messag..
-
Python: 모듈 import하고 표준 라이브러리 모듈 사용해보기! (feat. math, random, datetime)Python 2020. 6. 30. 00:37
1. 내가 만든 모듈 import하기 project 안에 calculator.py 라고 해서 계산기능을 넣은 py 파일을 만들어 줍니다. def add(x, y): # 덧셈 return x + y def subtract(x, y): # 뺄셈 return x - y def multiple(x, y): # 곱셈 return x * y def divide(x, y): # 나눗셈 return x / y 이제 같은 디렉토리 안에 있는 다른 py파일에 import 파일명을 해줍니다. import calculator x = 10 y = 5 print(calculator.add(x, y)) print(calculator.subtract(x, y)) print(calculator.multiple(x, y)) 단, cal..