Skip to content

Commit d2a87ae

Browse files
authored
Merge pull request darkprinx#18 from Prash099/patch-1
Update Day_11.md
2 parents 6134e5c + ab059b5 commit d2a87ae

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Status/Day_11.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,13 @@ input = input('Enter string:')
182182
output = ''.join(['Yes' if input == 'yes' or input =='YES' or input =='Yes' else 'No' ])
183183
print(str(output))
184184
```
185-
185+
Solution by: Prashanth
186+
'''
187+
x = str(input().lower())
188+
if x == 'yes':
189+
print('Yes')
190+
else:
191+
print('No')
186192
---
187193

188194
# Question 41

0 commit comments

Comments
 (0)