Answer:
the velocity = 10 m / sec if an object moves 100 m in 10s
Answer:
month = input("Input the month (e.g. January, February etc.): ")
day = int(input("Input the day: "))
if month in ('January', 'February', 'March'):
season = 'winter'
elif month in ('April', 'May', 'June'):
season = 'spring'
elif month in ('July', 'August', 'September'):
season = 'summer'
else:
season = 'autumn'
if (month == 'March') and (day > 19):
season = 'spring'
elif (month == 'June') and (day > 20):
season = 'summer'
elif (month == 'September') and (day > 21):
season = 'autumn'
elif (month == 'December') and (day > 20):
season = 'winter'
print("Season is",season)
Explanation:
Answer: MAP!!! it's always a good Idea to have a map nearby, cause you'll never know when you'll need it or like you said, lose reception
Answer:
The Young's Modulus of a material is a fundamental property of every material that cannot be changed. It is dependent upon temperature and pressure however. The Young's Modulus (or Elastic Modulus) is in essence the stiffness of a material. In other words, it is how easily it is bended or stretched.
Explanation:
Have a great day
Answer:
int()
Explanation:
float() is using decimals, so that can't be it, like float(input( "how much does this cost?"))
print() is used to print something, not a user asking, like print("hello")
string() means like a whole, like string( I am good)
By elimination, int() is correct.
Hope this helps!