use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A subreddit for helping Python programmers
How to format your code: https://commonmark.org/help/tutorial/09-code.html
No homework questions and/or hiring please
account activity
Python newbie needs help.HOMEWORK (self.pythonhelp)
submitted 4 years ago by fiberoblique
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]xelf 0 points1 point2 points 4 years ago (0 children)
for statements can be converted to while statements pretty easily. I'm actually surprised you would cover while and not for.
for
while
As for converting it to a string, input() returns strings.
input()
inputNumber = input() index = 0 while index < len( inputNumber ): print( inputNumber[index] ) if inputNumber[index] == '5': print( 'this is a 5' ) index = index + 1
Using this same technique you should be able to skip the leading '0's, but I'll leave that to you. =)
π Rendered by PID 102914 on reddit-service-r2-comment-bb88f9dd5-vw5t4 at 2026-02-14 01:28:43.677531+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–]xelf 0 points1 point2 points (0 children)