We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6134e5c + ab059b5 commit d2a87aeCopy full SHA for d2a87ae
Status/Day_11.md
@@ -182,7 +182,13 @@ input = input('Enter string:')
182
output = ''.join(['Yes' if input == 'yes' or input =='YES' or input =='Yes' else 'No' ])
183
print(str(output))
184
```
185
-
+Solution by: Prashanth
186
+'''
187
+x = str(input().lower())
188
+if x == 'yes':
189
+ print('Yes')
190
+else:
191
+ print('No')
192
---
193
194
# Question 41
0 commit comments