-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram1
More file actions
25 lines (24 loc) · 1.47 KB
/
Program1
File metadata and controls
25 lines (24 loc) · 1.47 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
#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!
#Test Data
#Sample input: spathiphyllum
#Expected output: No, I want a big Spathiphyllum!
#Sample input: pelargonium
#Expected output: Spathiphyllum! Not pelargonium!
#Sample input: Spathiphyllum
#Expected output: Yes - Spathiphyllum is the best plant ever!
str1="Spathiphyllum"
str2="spathiphyllum"
x=input("the word is: ")
if x==str1:
print("Yes - Spathiphyllum is the best plant ever!")
elif x==str2:
print("No, I want a big Spathiphyllum!")
else:
print("Spathiphyllum! Not "+ x +"!")