Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use ==/!= to compare str, bytes, and int literals #767

Merged
merged 4 commits into from
May 16, 2019
Merged
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ install:
- pip install flake8 # pytest # add another testing frameworks later
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
Expand Down
4 changes: 2 additions & 2 deletions project_euler/problem_17/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
if i >= 100:
count += ones_counts[i/100] + 7 #add number of letters for "n hundred"

if i%100 is not 0:
if i%100 != 0:
count += 3 #add number of letters for "and" if number is not multiple of 100

if 0 < i%100 < 20:
Expand All @@ -32,4 +32,4 @@
else:
count += ones_counts[i/1000] + 8

print(count)
print(count)
8 changes: 4 additions & 4 deletions project_euler/problem_19/sol1.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
day += 7

if (year%4 == 0 and not year%100 == 0) or (year%400 == 0):
if day > days_per_month[month-1] and month is not 2:
if day > days_per_month[month-1] and month != 2:
month += 1
day = day-days_per_month[month-2]
elif day > 29 and month is 2:
elif day > 29 and month == 2:
month += 1
day = day-29
else:
Expand All @@ -45,7 +45,7 @@
year += 1
month = 1

if year < 2001 and day is 1:
if year < 2001 and day == 1:
sundays += 1

print(sundays)
print(sundays)