209k views
0 votes
HELP ME FORM A CODE 100 POINTS

Jeroo method: pick all flowers in the pattern

HELP ME FORM A CODE 100 POINTS Jeroo method: pick all flowers in the pattern-example-1
User Whiskeyo
by
7.5k points

1 Answer

7 votes

Answer:

Here is a simple Jero method code to pick all flowers in the pattern shown in the image:

```

def pick_all_flowers():

while True:

if is_facing_east():

if is_flower():

pick()

else:

turn_right()

else:

if is_flower():

pick()

else:

turn_left()

# Execute the code

pick_all_flowers()

```

This code will first check if Jeroo is facing east. If it is, and there is a flower in front of it, Jeroo will pick it up. If there is no flower, Jeroo will turn right. If Jeroo is not facing east, it will check if there is a flower in front of it and pick it up if there is one. If there is no flower, Jeroo will turn left.

This code will continue executing until Jeroo reaches the end of the pattern and there are no more flowers to pick.

User DuCorey
by
7.1k points