Anybody know the code for edhesive 10.5 code practice?
Answers
Answered by
0
Answer:Its 10.1
Explanation:
Answered by
7
Answer:
def flipIt(a):
for i in range(len(a)-1, -1, -1):
for j in range(len(a[0])):
print(a[i][j], end = " ")
print("")
array = []
array.append(["@"," "," "," "," ","@"])
array.append(["@","@"," "," "," ","@"])
array.append(["@"," ","@"," "," ","@"])
array.append(["@"," "," ","@"," ","@"])
array.append(["@"," "," "," ","@","@"])
array.append(["@"," "," "," "," ","@"])
flipIt(array)
Explanation:
This is the correct code.
Attachments:
Similar questions
Hindi,
6 months ago
English,
6 months ago
Computer Science,
6 months ago
Environmental Sciences,
11 months ago