Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added 100 Python Practice Problems.docx
Binary file not shown.
Binary file added 100 Python Practice Problems.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions 100+ Python challenging programming exercises for Python 3.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ while True:
if s:
lines.append(s.upper())
else:
break;
break

for sentence in lines:
print(sentence)
Expand Down Expand Up @@ -1080,7 +1080,7 @@ Use if statement to judge condition.

Solution
```python
s= raw_input()
s= input()
if s=="yes" or s=="YES" or s=="Yes":
print "Yes"
else:
Expand Down
Loading