1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Nutka1998 [239]
2 years ago
11

9.6 Code practice Edhesive

Computers and Technology
1 answer:
Oxana [17]2 years ago
7 0

Answer:

N = [1,1,1,1,1],

[2,2,2,2,2],

[3,3,3,3,3],

[4,4,4,4,4]

def printIt(ar):

   for row in range(len(ar)):

       for col in range(len(ar[0])):

           print(ar[row][col], end=" ")

       print("")

           

N=[]

for r in range(4):

   N.append([])

   

for r in range(len(N)):

   value=1

   for c in range(5):

       N[r].append(value)

       value=value + 1

           

printIt(N)

print("")

newValue=1

for r in range (len(N)):

   for c in range(len(N[0])):

       N[r][c] = newValue

   newValue = newValue + 1

       

printIt(N)

Explanation:

I got 100%.

You might be interested in
Which visual aids can be used to present large amounts of numerical data from multiple sources? Check all that apply.
alexdok [17]

Answer:

The correct answers would be <u>B.) a line graph</u> and <u>D.) a bar graph</u>

Explanation:

I just did the assignment on edge 2020 and got it right

6 0
3 years ago
我对汉语的兴趣 làm đoạn văn theo đề trên​
ExtremeBDS [4]

Answer:

which language is this

Explanation:

Chinese or Korea

3 0
3 years ago
Previous
spin [16.1K]

Answer:

A b output 0110111111001111

7 0
3 years ago
Enhancement of job satisfaction and productivity are key characteristics of which theoretical perspective of work design? ​
Pavlova-9 [17]

Answer: Socio-technical systems

Explanation:

Sociotechnical systems refers to an approach to organizational work design whereby the interaction between people and technology in the workplace is recognized.

It should be noted that the welfare of the worker is emphasized in socio technical systems is emphasized in the form of motivation and job enrichment.

3 0
3 years ago
Non related to school but im interested,<br><br> Who here actually watches dream smp be honest
Kamila [148]
I did- but I don’t anymore
3 0
3 years ago
Read 2 more answers
Other questions:
  • How would Microsoft Word inform you of the error in the sentence below? (Tip: The error is in bold.)
    7·1 answer
  • Anna is making a presentation on the solar system. She wants to emphasize the planet names as they appear one by one on the pres
    11·1 answer
  • A coworker asks your opinion about how to minimize ActiveX attacks while she browses the Internet using Internet Explorer. The c
    14·1 answer
  • Which of the following accurately describes one way that individual goods
    11·1 answer
  • Lexi wants to buy a $300 painting. when she gets to the store, she finds that it is on sale for 40% off. how much does Lexi spen
    10·1 answer
  • Select the correct answer.
    10·2 answers
  • What made it possible to develop personal computers?
    10·2 answers
  • When a new word processing software program is released, companies that might use it must consider not only the cost of buying i
    13·1 answer
  • How to give a file name as an argument in function in python.
    11·1 answer
  • If userNum1 is less than 0, put "userNum1 is negative.\n" to output. If userNum2 is greater than 10, assign userNum2 with 0. Els
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!