Answer to Question #257170 in Python for Aarrya

Question #257170

Write an if/else statement that compares sold_yesterday and sold_today, and based upon that comparison assigns sales_trend the value -1 (the case where sold_yesterday is greater thansold_today) or 1.


1
Expert's answer
2021-10-26T17:28:16-0400
if __name__=='__main__':
  sold_yesterday = int(input('sold yesterday: '))
  sold_today = int(input('sold today: '))
  sales_trend = -1 if sold_yesterday > sold_today else 1
  print(sales_trend)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS