52.0k views
2 votes
What is the output by the following code?

for x in range (3):
for y in range (4):
print("*", end=" ")
print("")
Group of answer choices

* * * *
* * * *
* * * *

* * *
* * *
* * *
* * *

* * * *
* * * *
* * * *
* * * *

* * *
* * *
* * *

1 Answer

0 votes

Answer:

* * * *

* * * *

* * * *

That's the answer.

User Miro Hudak
by
8.7k points