SyntaxFix
Write A Post
Hire A Developer
Questions
for i in count: means for i in 7:, which won't work. The bit after the in should be of an iterable type, not a number. Try this:
for i in count:
for i in 7:
in
for i in range(count):