Answer: Change this however you'd like :)
Explanation:
for n in range(100):
print("priya")
print()
for n in range(10):
for i in range(10):
print("priya", end= " ")
print()
print()
tempList = []
for n in range(1, 1001):
tempList.append(n)
print(sum(tempList))
print()
for n in range(1, 9):
for i in range(1, 9):
print(n*i)
print()
x = 100
while x != 0:
print(x)
x -= 1
Answer:
D is my answer to this question.
Your question makes no sense. Please retype it.
I guess the answer in the blank is Bridge.
A bridge is a device that provides a connection between two LANs that use the same protocol, or it can separate them into two sections.
Answer:
i=0
while pow(2,i)<=1000000:
print(pow(2,i))
i+=1
Explanation:
We need to write a program that prints the power of 2, and till the number is less than 1 milliion. And the program in python is as above.