-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathString_If
More file actions
29 lines (21 loc) · 1.38 KB
/
String_If
File metadata and controls
29 lines (21 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#Script Author : AROCKIA JEGAN F
#visit_me @ www.arcokiajegan.com
#Description --> Its a task in Cisco Python learning
"""
Scenario
Spathiphyllum, more commonly known as a peace lily or white sail plant, is one of the most popular indoor houseplants that filters out harmful toxins from the air. Some of the toxins that it neutralizes include benzene, formaldehyde, and ammonia.
Imagine that your computer program loves these plants. Whenever it receives an input in the form of the word Spathiphyllum, it involuntarily shouts to the console the following string: "Spathiphyllum is the best plant ever!"
Write a program that utilizes the concept of conditional execution, takes a string as input, and:
prints the sentence "Yes - Spathiphyllum is the best
plant ever!" to the screen if the inputted string is "Spathiphyllum" (upper-case)
prints "No, I want a big Spathiphyllum!" if the inputted string is "spathiphyllum" (lower-case)
prints "Spathiphyllum! Not [input]!" otherwise. Note: [input] is the string taken as input.
Test your code using the data we've provided for you. And get yourself a Spathiphyllum, too!
"""
plant_name= str(input("Enter the plant name please:"))
if plant_name=="Spathiphyllum" :
print("Yes - Spathiphyllum is the best plant ever!")
elif plant_name=="spathiphyllum":
print("No, I want a big Spathiphyllum!")
else:
print("Spathiphyllum! Not", plant_name)