Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The following code contains 5 errors. Identify the line number where the error occurs and provide a brief explanation of how to fix it .

The following code contains 5 errors. Identify the line number where the error occurs and provide a brief explanation of how to fix it. You do not need to add any additional lines or provide updated code.
from tkinter import Tk
from time import sleep
from random import randint as rand
window =Tk()
window.title("The window")
canvas = Canvas (window, width =400, height =400,bg= black")
num_squares = input("How many squares?")
square =[]
colour =["red", "yellow", "green", "blue"]
for i in range(num_squares):
c_col = rand (0,3)
x=rand(10,300)
y=rand(10,300)
xy=(x,y,x+10,y+10)
square.append(canvas.create_rectangle (:(xy,fill=colour[ccol])}
canvas.pack
x=[1]** num_squares
y=[1]** num_squares
while True:
for i in range(num_squares):
pos = canvas.coords(square[i])
if pos [3]>400 or pos [1]0 :
y[i]=-y[i]
if pos [0]0 or pos [2]>400:
x[i]=-x[i]
for j in range(num_squares)
if i=j : continue
pos 2= canvas.coords (square [j])
if pos[0] pos2[2] and pos[2]> pos2[0] and pos[1] pos2[3] and pos[3]> pos2[1]:
y[i]=-y[i]
x[i]=-x[i]
y[j]=-y[j]
x[j]=-x[j]
canvas,move(square [i],x[i],y[i]
sleep(0.002)
window. update()
window mainloop()
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke

4th Edition

0136086535, 9780136086536

Students also viewed these Databases questions

Question

Explain how to control impulses.

Answered: 1 week ago

Question

Explain the factors influencing wage and salary administration.

Answered: 1 week ago

Question

Examine various types of executive compensation plans.

Answered: 1 week ago

Question

1. What is the meaning and definition of banks ?

Answered: 1 week ago

Question

Why would unions target health care workers?

Answered: 1 week ago