Write a function that takes a plant's name as an argument and returns its growth cycle

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Plants Growth Cycle

 

Learning Objectives

In this lab, you will practice:

  • Defining a function to match the given specifications
  • Calling the function in your program
  • Using if statements (can combine them with dictionaries)

Instructions

For every plant, there is a growth cycle. The number of days that it takes starting from being a seed and ending in being a fruit is what is called the growth cycle. Write a function that takes a plant's name as an argument and returns its growth cycle (in days).

In your program:

  1. Input from the user the name of a plant

  2. Check if the input is either "strawberry", "cucumber" or "potato", if Yes:

    2.1 Call calculate_growth_cycle

    2.2. In function calculate_growth_cycle, check over the plant's name:

    2.2.1 If strawberry, print "### The life cycle of a strawberry ###" and return 110

    2.2.2 If cucumber, print "### The life cycle of a cucumber ###" and return 76

    2.2.3 If potato, print "### The life cycle a potato ###" and return 120

    2.3 With the growth cycle number returned, your program should print "A seed takes <growth_number> days to reach maturity."

If not, your program should print "Your plant is available, please try "strawberry", "cucumber" or "potato"

Example

Input

potato

Output

### The life cycle of a potato ### A seed takes 120 days to reach maturity.

Input

Mango

Output

Your plant is available, please try "strawberry", "cucumber" or "potato"

References

Strawberry growth cycle

Cucumber growth cycle

Potato growth cycle

 

 

def calculate_growth_cycle(plant_name):
    # Write your code here and remove pass after you finish
    pass


if __name__ == "__main__":
    
    plant_name = input()
    # Write the remianing of your code here

main.py
Load default template..
1 def calculate_growth_cycle(plant_name):
# write your code here and remove pass after you finish
3
pass
4
6 if
main_":
name
7
input ()
plant_name =
# write the remianing of your code here
8.
9
10
Transcribed Image Text:main.py Load default template.. 1 def calculate_growth_cycle(plant_name): # write your code here and remove pass after you finish 3 pass 4 6 if main_": name 7 input () plant_name = # write the remianing of your code here 8. 9 10
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY