Answer:
- price = 380
- dollar = (price // 100) + 1
- print(dollar)
Explanation:
Presume the an item cost 380 cents and we set 380 to the variable price (Line 1). To estimate the number of single dollars to be paid, we can use // operator to divide price by 100 and we will get 3 (the remaining decimal point will be discarded). Then we add 3 by one. So the expression is
(price//100) + 1
*The reason we divide price by 100 is because 1 dollar = 100 cents
The answer to your question is correct/ true
The pressure inside the can upon cooling is 0.4 atm.
<u>Explanation:</u>
Given -
Initial Temperature, T1 = 908°C = 908 + 273 K = 1181 K
Final Temperature, T2 = 208°C = 208 + 273 K = 481 K
Pressure upon cooling, P2 = ?
Using Gay Lussac's law:
P1/T1 = P2/T2
P2 = P1 X T2 / T1
P2 = 1 atm X 481 / 1181
P2 = 0.4 atm
Therefore, the pressure inside the can upon cooling is 0.4 atm.