Write the coding in python
Attachments:
Answers
Answered by
0
Answer:
program, follow these steps:
Open your Start menu and choose Python (command line). You should get a prompt that looks like >>>. ...
At the prompt, type the following. Use a single quote at the start and the end — it's beside the Enter key: ...
Press the Enter key. Python runs the code you typed.
Answered by
1
Answer:
for i in range(5):
for j in range(5):
print('|')
Explanation:
for this command, we use nested loop the first loop, we enter the number of columns (that is 5) and for the second we use the rows (that is 5) and the print | (shift + \).
hope this helped ya
Similar questions