What is wrong in this python code import turtle bot = turtle.Turtle step = (50) turnAngle = (90) bot.Color("blue") bot.Begin_fill() bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.Forward(step) bot.Right(turnAngle) bot.End_fill()

Answers

Answer 1

Answer:

The "Turtle" is a method and should be declared with parenthesis and every other method in the code (except the Turtle() ) should begin with lowercase letters like right, forward and begin_fill. The python file should not be saved as turtle.py to avoid import error.

Explanation:

The python turtle module is a graphical programming package created to introduce programming to children. It has several classes and methods to manipulate objects on the screen.

import turtle  

bot = turtle.Turtle()  

step =(50)  

turnAngle =90  

bot.color("blue")  

bot.begin_fill()  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.forward(step)  

bot.right(turnAngle)  

bot.end_fill()


Related Questions

BUYING A NEW COMPUTER
Scott is getting a new computer. He has three options for secondary storage. He could
choose
a 6TB hard disk drive
a 2TB solid state drive
a hybrid 500GB solid state with a 4TB hard disk
For each option provide some reasons why Scott may choose that option instead of the
alternatives.
IS​

Answers

6 TB- Choose this if you are getting the computer for work use, always pick the highest amount of storage for everyday use.

2TB SSD- This is the worst option because its the least among the others, but if you were just a game this may suit you.

500 GB SSD with 4TB- This would be the best option for someone who games, edits, or does graphics, because you get the storage but you also get 500 GB of SSD to load your software on, which will help it launch faster and run smoother.

If the larger gear is the
input driven and the small
gear is the output, you get
_____ multiplier?
a

Answers

Answer: A multiplier that's equal or larger than 1

Find and Explain 3 different sources of Kinetic Energy in your house that are utilized on a daily basis?

Answers

1.)When you turn on a light with a traditional incandescent light bulb, it gives off two forms of energy. There is the visible light that you see, as well as the warmth that it generates

2.) When you place a frozen pizza in the oven, you are heating it up and raising its temperature

3.) A light fixture that is plugged into a wall outlet and is turned on is another example of electrical energy

How does taking notes improve academic success? Check all that apply.

Answers

Answer:

What are the options??

Explanation:

Answer:

1,3,4,5

Explanation:

I took the assignment

Focusing on the general characteristics of a problem or object, while ignoring the details, is a technique called
O refinement
O abstraction
O decomposition
O pattern recognition

Answers

Answer:

Abstraction

Explanation:

In computer science, abstraction has a similar definition. It is a simplified version of something technical, such as a function or an object in a program. The goal of "abstracting" data is to reduce complexity by removing unnecessary information. At some level, we all think of computers in abstract terms.

Anyone have an answer for 4.9 lesson code practice

Answers

Answer:

loop

Explanation:

Answer:count

Explanation:

Elias is writing poems and is formatting several to fit on a page that has been divided into columns. Which column break would allow him to end one poem and start the next poem on the same page?

Question 6 options:
next page
sequential
text wrap
continuous

Answers

Answer:

Explanation:

Column break continous

Write a program that asks the p34won to enter their grade, and then prints GRADE is a fun grade. Your program should repeat these steps until the user inputs I graduated

Answers

Answer:

Following are the code to this question:

def fun():#defining a method fun

  while True:#defining a while loop  

      g = input("Enter your grade: (I graduated) ")#defining variable g for input value

      if g == "I graduated":#defining if block to check string value

          return 0#return  

      print("{} is a fun grade".format(g))#use print method to print string value  

fun()#calling the method

Output:

Enter your grade: (I graduated) 1st

1st is a fun grade

Enter your grade: (I graduated) 2nd

2nd is a fun grade

Enter your grade: (I graduated) I graduated

Explanation:

In the given python code, a method "fun" is defined, and inside the method, a while loop is defined, which uses a variable "g" for input value from the user-end.

In the next step, if block is defined to check string a value and return a value 0, and use the print method to print the given value, and call the above method fun.  

What can you do if brainstorming only gives you a small or incomplete idea?
A. Brainstorm again
B. Develop the idea through research
C. Develop the idea through a close reading of a literary text
O
D. All of the above

Answers

Answer:

D. All of the above

Explanation:

What are three print output options available in PowerPoint?
A. Handouts, Slides, Speaker Notes
B. Outline, Kiosk, Overheads
C. Overheads, Handouts, Slides
D. Kiosk, Handouts, Computer

Answers

Answer: .A

Explanation: i got it right

Answer:

'A' on edge 2020

Explanation:

Just took the test

Documentary photographers strive to produce what type of image?
А.
Edited
B.
True
C.
Colorful
D.
Blurred

Answers

I’m pretty sure that the answer is B

Answer:

B. :)

Explanation:

what is computer?explain any five characteristic in short.​

Answers

Answer:

A programmable electronic device designed to accept data, perform prescribed mathematical and logical operations at high speed and display the results of these operations. Mainframes, desktop and laptop computers, tablets, and smartphones are some of the different types of computers.

Characteristics of Computer System:

= Speed. A computer works with much higher speed and accuracy compared to humans while performing mathematical calculations. ...

= Accuracy. Computers perform calculations with 100% accuracy. ...

= Diligence. A computer can perform millions of tasks or calculations with the same consistency and accuracy. ...

= Versatility. ...

=Reliability. ...

= Memory.

What can you do to prevent damage to a computer? Check all of the boxes that apply.

Keep your computer in a temperature- controlled room.

Tie cords in knots so they are shorter.

Dust your computer only when you see a buildup of dust.

Use surge protectors when you are away from home or school.​

Answers

Answer:

temperature-controlled room and surge protectors

Explanation:

Answer:

Keep your computer in a temperature- controlled room

Dust your computer only when you see a buildup of dust

Use surge protectors when you are away from home or school

Explanation:

just good

Which best describes what happens when a formula is copied from one cell to another?
The cell references in the formula remain the same to match the cell that the formula is pasted into.
The cell references in the formula remain the same as they were in the original cell.
The cell references in the formula change to match the cell that the formula was copied from.
O The cell references in the formula change to match the cell that the formula is pasted into.
Hurry up

Answers

Answer:

b 2

Explanation:

b2

Write a function that takes the name of a file with a .csv extension (a comma-separated value file), and writes a new file that is equivalent (same name and same data) but with a .tsv extension (a tab-separated value file: like a CSV but with tabs instead of commas separating the elements of the file). Note: the character used to represent a tab is ‘\t’.

Answers

Answer:

import pandas as pd

def convert_to_tsv( csv_filename ):

   df = pd.read_csv("csv_file")

   df.to_csv("csv_filename.tsv", sep='\t')

Explanation:

The python program uses the pandas' module to read in the csv file in the function "convert_to_tsv". The file is saved as a tsv file with the pandas to_csv method and the " sep= '\t' " attribute.

How did New York Governor Hugh Carey handle Sostre’s situation?

Answers

Answer:

The governor found a way to free Sostre without assessing whether or not he was guilty or innocent of drug crime in buffalo.

Explanation:

Answer:

The governor found a way to free Sostre without assessing whether or not he was guilty or innocent of drug crime in buffalo.

Explanation:

correct on e2020 Dawg

The way a student prepares for a test or reviews academic material is referred to as

a study environment.
study habits.
study hall.
a study schedule.

Answers

Study habits ig













Dsksndjdjs

What is NOT a built-in function in python?
sqrt()
string()
fabs()
O print()

Answers

Answer:

sqrt()

Explanation:

In python there more there 100s of core built in codes, the only one that isnt one of those is sqrt()

Sqrt
Your welcome xoxo

When and how should resources be invested to close gaps between those who do and don’t use the Internet?

Answers

Answer:

To minimize the technological gap is necessary and not so hard.

Explanation:

The first form of solving it is to minimize the need to use the internet at home, so that users could save the data in some programs which could use afterward if needed, without the internet.

Access to the documents, books, and folders without the need for the internet would be the perfect solution.

The Internet has to be accessible in school so that the students who don’t have it at home could use the most of it in school. Also, the internet connection should be available in the spots around schools, cafes, libraries during the whole day.

Make the internet affordable for everyone.

Adding Page Numbers in the Footer
Seren needs to add page numbers in the footer to her worksheet. Order the steps from first to last.

Go to the View tab and select
Click Page Number in the Design Click Add Footer at the bottom of
Save and Print Preview
Page Layout View
tab
the worksheet

Answers

Answer: 1) Go to view tab and select Page Layout view. 2)click add footer at the bottom of the worksheet 3) click page number in the design tab 4)save and print preview

Explanation: I just answered the question

Answer:

Yeah its right I tride it edge 2022

Explanation:

What is the purpose of the ISOWEEKNUM function?

determines how many workdays are in a certain week
determines how many workdays are in a certain month
determines what day of the year that date is
determines what week of the year that date is

ANSWER IS D

Answers

Answer is D
Stay safe !

Answer:

d

Explanation:

just took the Q edge

Software licensed as proprietary

is usually free of cost often has lower quality than other types.

does not permit source code changes.

is rare in today's marketplace.

can be redistributed by the user at will.​

Answers

Answer:

Does not permit source code changes.

Explanation:

Answer:

does not permit source code changes.

Explanation:

Which of the following BEST describes the relationship between the Boston Marathon bombing and biometrics?

Answers

Answer:

Because of the newly developed biometric technology, the FBI was able to

quickly identify two suspects.

The blurry photos released by the FBI after the bombing prompted

researchers to improve their early biometric software.

Because biometric technology was unavailable at the time, the Boston

Marathon bomber remains at large.

The Boston Marathon bombing made researchers aware of how biometric

technology is sometimes useless and ineffective.

Explanation:

The fireworks were a lantern in the sky

Answers

Answer:

So your saying thst when a firework blows then it is a big lantern in the sky???

What should students hope to get out of classroom discussions? Check all that apply.

Answers

Answer:

well you didnt put the selection but i would guess answers help a good conversation

Explanation:

Answer: classroom discussions are good, they help the students and this is kind of a discussion

Explanation:

Help me pls!!


Look at the following assignment statements:

food1 = "water"
food2 = "melon"

What is the correct way to concatenate the strings?

newFood = word1 == word2
newFood = word1 + word2
newFood = word1 * word2
newFood = word1 - word2

Answers

new food = word1 + word2 will connect both words together with no space in between. The value of newFood will now be "watermelon"

Answer:

new food = word1 + word2

Explanation:

The __________ on a mouse is used to select or place the cursor where you want on the page

Answers

Answer:

It is called a scroll wheel . mouse has two buttons, usually it's the one on the left you'll press.

To summarize means to
O. Directly quote the main idea
O. Communicate the main idea with supporting details
O. Explain the main idea’s significance
O. Condense the main idea into a few words

Answers

Answer:

To summarize is to explain the main idea in as few words as possible. So the answer is the last statement, to "Condense the main idea into a few words". Hope this helped.

Answer:

Its D

Explanation:

Hope it helped

Challenge #3: Create a network that keeps everyone connected even if one of the lines is cut Insert as many lines as needed

Answers

Answer:

To create a redundant computer network, The star network topology is adopted.

Explanation:

Note that topology is not a type of network but a top view of how the network looks like or is connected.

To make a network redundant, interconnect every computer to one another in the network, so even when a line or an ethernet cable ( the connector) makes, there is no loss of connection.

This form of network is not recommended for large computer networks as it would result in confusion due to excess connection cables running in the network.

PLS help im in the middle of this test
If someone enjoys the technical aspects of production but does not enjoy working with a large number of people, which career option might be best?


photojournalist
videographer
camera operator
print journalist

Answers

Answer:

Videographer

Explanation:

They work with a small grade while the other have to have good people skills

Other Questions
why banks pay lower interest rates on savings accounts than on certificates of deposits. Choose the correct sentence in past simple: *We decide to go to the movies next week because we don't have money now.They lefted the house at 5: 00 o'clock in the afternoon.I did my homework last week, is ready teacher. What is the difference between the 6th square number and the 4th square number? Helpp pls its 25 points Write the ratios as fractions IN THEIR SIMPLEST form44 boys to 88 girls Last question!!Match the picture to the reason that would prove the triangles congruent.Options:NONEASASSSSASAASHL Groundwater can flowO TrueFalse 3. Chin Lee Florists is opening a new store in the warehouse district of town. The annual rent is $8.75 persquare foot plus 5% of the store's annual gross sales. The store measures 36 feet by 48 feet. Based onexperience, Chin Lee estimates $225,000 in gross sales. What is Chin Lee's estimate of the monthly renton this store? The Boston Massacre was an episode in US history in which five civilians, 1770, died at the hands of UK troops. The Boston Massacre had a major impact on relations between Britain and the American colonists. It further incensed colonists already weary of British rule and unfair taxation and roused them to fight for independence. List the events leading up to and following the Boston Massacre in the order they occurred. For the sake of maximizing hardware utilization in a multicore system with a many to many threading model, the relationship of the number of user threads U to the number of kernel threads K to the number of CPU cores P should be: 2. When singers are in harmony, what should the music sound like? which of the following rock type(s) may be weathered to become sediment and form a sedimentary rock?A) Igneous rockB) Sedimentary rockC) Metamorphic rockIgneous, Sedimentary and Metamorphic rocks Help would be really appreciated! Find the range of a projectile launched at an angle of 30with an initial velocity of 20m/s Which is a common use of minerals?A.pastaB.toothpasteC.applesauceD.wooden craft stick The Mayflower Compact showed that the Pilgrims were A. ready to begin a new way of life without strangers. B. aware of needing to make their own government. C. aware of how different they were from other colonies. D. willing to follow the same laws as Virginia. Can someone please help, ty!!(Will mark brainliest) A mosquito larva diving away from the surface of the water when it sees a shadow would be an example of which characteristic of life?Question 10 options:homeostasisresponding to the environmentgrowth and developmentreproduction How much energy is required to raise the temperature of 0.2 kg of aluminum from 15C to 18C? (Refer to table of specific heat values.)