파이썬 GUI, 넘파이 연습
1. 움직이는 애니메이션 공 프로그램을 작성하시오. ''' 움직이는 애니메이션 공 프로그램을 작성하시오. ''' from tkinter import* import random import time window = Tk() canvas = Canvas(window, width=600, height=400) canvas.pack() class Ball(): def __init__(self, color, size): self.id = canvas.create_oval(0, 0, size, size, fill=color) self.dy = random.randint(1,10) self.dx = random.randint(1, 10) self.dz = random.randint(1, 10) ball1 = Ball..
더보기
Python 클래스, 객체, GUI
● 파이썬 클래스, 객체 개념, 코드 연습 class Television: def __init__(self, channel, volume, on): self.channel = channel self.volume = volume self.on = on def show(self): print(self.channel,self.volume, self.on) def setChannel(self, channel): self.channel = channel def getChannel(self): return self.channel t = Television(9, 10, True) t.show() t.setChannel(90) t.show() ''' 원을 클래스로 구현하시오. 클래스 이름은 Circle로 한다. - 생..
더보기