Python 328제] 버블정렬
출처 : 반크_독도2023 문제]주어진 자료 [120, 56, 309, 220, 156, 23, 98]를 turtle 그래픽을 사용하여 막대그래프로 그려주고, 버블정렬하는 과정을 작성하여 주세요. 참고풀이]import turtle import time def drawBar(height): t.begin_fill() t.left(90) t.forward(height) t.write(str(height), font = ('Times New Roman', 16, 'bold')) t.right(90) t.forward(40) t.right(90) t.forward(height) t.left(90) t.end_fill..
2024. 10. 31.
Python 327제] 두근두근 파이썬(개정판) CHAPTER 13 연습문제 4 p397
출처 : 반크_독도2023 참고풀이]from tkinter import * import random import time class Ball: def __init__(self, x, y, col, size): #원의 위치, 색, 그리고 크기를 받아온다. #x,y위치에서 size크기의 col색의 원을 그린다. self.won=canvas.create_oval(x, y, x+size, y+size, fill=col) self.mx=random.randint(1,10) #x의 이동값을 임의의로 구한다. self.my=random.randint(1,10) #y의 이동값을 임의의로 구한다. def Move(self): ..
2024. 10. 28.