Answer: *changed*
Explanation: Because you peed
Answer:
The program is as follows:
i = 1
while(i<11):
j = 1
while(j<=i):
print('*', end = '')
j += 1
i += 1
print()
Explanation:
Initialize i to 1
i = 1
The outer loop is repeated as long as i is less than 11
while(i<11):
Initialize j to 1
j = 1
The inner loop is repeated as long as j is less than or equal i
while(j<=i):
This prints a *
print('*', end = '')
This increments j and ends the inner loop
j += 1
This increments i
i += 1
This prints a blank and ends the inner loop
print()
Answer (Part 1):
620 joules
Explanation:
Work is done when force is applied on an object over a distance. It is measured in joules.
<u>Formula</u>
Thus, Work = Force x distance
Since, Work = ? (unknown value)
<u>Given:</u>
Force = 200N
Distance = 1.2 meters
<u>So,</u>
Work = 200N x 3.1 meters
= 620 joules
Thus, Amanda did a work of 620 joules on the crate.
Answer (Part 2):
240.25 joules
Explanation:
Work is done when force is applied on an object over a distance. It is measured in joules.
<u>Formula</u>
Thus, Work = Force x distance
Since, Work = ? (unknown value)
<u>Given:</u>
Force = 77.5N
Distance = 3.1 meters
<u>So,</u>
Work = 77.5N x 3.1 meters
= 240.25 joules
Thus, Amanda did a work of 240.25 joules on the crate.
Hope this helps! :)
Answer:
no :-(
Explanation:
Are you sure these technologies fit together?
As I understand it, flask is a library to write web services using python. It will essentially serve HTML pages and perhaps REST interfaces?
Pygame is a local machine abstraction layer to graphics and other i/o. I don't think it will run in a browser.
What is your plan?