Python Forum
Can someone please help me write the code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Can someone please help me write the code
#8
You should solve the problem as described in the statement of work. The statement of work says:
Quote:There are 150 apples on a tree. They are increased by 15% every week.
how many number of apples will we get after 5 weeks.
This could be done with a loop, but that is not a good choice for solving this problem. You wouldn't do this would you?
# Calculate 5 squared
result = 1
for _ in range(5):
    result = result * 5
Just because you are writing programs for a programming class it doesn't mean you should turn off you brain. If I was teaching the course I would fail everyone who used a loop for this assignment.
Reply


Messages In This Thread
Can someone please help me write the code - by Ram - Feb-07-2021, 11:29 AM
RE: Can someone please help me write the code - by deanhystad - Feb-07-2021, 07:57 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to write a dict code in python ariellea88 4 1,167 Oct-31-2023, 08:45 AM
Last Post: buran
  how to write code demon_calcifer 1 1,674 Nov-16-2021, 04:09 PM
Last Post: Larz60+
  Please help me to write code for this vij 8 3,888 Jun-10-2020, 12:13 PM
Last Post: pyzyx3qwerty
  Write pseudo code for a class assignment Scrimshot 3 3,509 May-07-2019, 05:38 PM
Last Post: Scrimshot
  Write a code to output in alphabetical order AbdelaliPython 1 4,715 Jan-19-2018, 09:03 PM
Last Post: j.crater
  how to write a code for term that can't begin or end with a stopword desul 3 3,882 Mar-18-2017, 03:42 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020