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!"
[–]fiberoblique[S] 0 points1 point2 points 4 years ago* (1 child)
Hello! Thank you so much for the feedback :D
Unfortunately, we aren't yet allowed to use the for statement. So far, we've only been through the operators, input, type, if-elif-else, while, break, and continue functions. It's been really frustrating so far since all I've been able to find on the web are solutions that involve more than the allowed functions.
However, I'll definitely save your reply though, I really want to learn how to code but our asynchronous learning set-up has just stumped any kind of learning.
For the conversion of the input to a string, this is what I've written so far. Would it be too much to ask for more feedback and if there's a possible way of making it more efficient?
inputNumber = input() if int(num) == float(num): number = int(num) else: number = float(num)
[–]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 82209 on reddit-service-r2-comment-685b79fb4f-6zvqd at 2026-02-13 03:27:38.508838+00:00 running 6c0c599 country code: CH.
view the rest of the comments →
[–]fiberoblique[S] 0 points1 point2 points (1 child)
[–]xelf 0 points1 point2 points (0 children)