Skip to content

Commit

Permalink
Merge pull request darkprinx#29 from pratikb0501/patch-2
Browse files Browse the repository at this point in the history
Update Day 7.md
  • Loading branch information
darkprinx authored Jun 3, 2020
2 parents ad2f712 + 06f452c commit 8969235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Status/Day 7.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ for i in MyGen().by_seven( int(input('Please enter a number... ')) ):
class Divisible:

def by_seven(self, n):
for number in range(n + 1):
for number in range(1,n + 1):
if number % 7 == 0: yield number


Expand Down

0 comments on commit 8969235

Please sign in to comment.