You can convert a string into an int by using int(). You know how I know this? Because I used documentation. Learn to read and search.
Easton Garcia
I tired that earlier but it didnt work... here is what I did:
age = input("State your age: ")
while not age.isdigit(): age = int(input("Numbers only: ")) print("Input OK...")
if age
Samuel Garcia
Cant you just tell a google app what you want it to do and it will make the code for you??
Brayden Martin
If this is a total fuckup, how should it be rewritten? I understand the basic concepts in isolation, but when I try to combine them thats when it goes to shit.
Christian Reed
Wow, you're an idiot.
Look trough your code one line at a time and try to identify the nests. Since you're slow I'm gonna say it to you. your int() is inside the while nest which only triggers if the user tried a wrong input. Worse than that, if you try to int() something that can't be int()'ed python iirc throws an exception. What I would do is spare the first line and put a more descriptive input function inside a while loop and once the while loops validate the input I would do age = int(age) on the next line outside the nest.
isdigit only checks if the string represents a number. It doesn't make it usable as a number. Once you turn your input into a number with int() it stop being a string. You should do age = int(age) after it passes your test.
Wyatt Jenkins
when you use int() it's going to convert eg floats anyway. what you want is literal_eval
Wyatt Parker
Can you show me so I can compare? I know if I miss a dent or a colon the fucker wont run and I wont know if the overall concept is wrong or just a syntactical thing
i.e. please write my shit program so I can see how it should be done
John Stewart
That still isn't correct buddy, refer to my version below: age = input("State your age: ")
while not age.isdigit(): age = input("Numbers only: ") print("Input OK...")
age = int(age)
if age
Ryder Martin
Fire up a debugger or, if you have no other option, throw in print()s. See what the values are, where they aren't what they should be, then what made them not be right. RTFM where needed.
If you want to learn shit, figure it out on your own. If you want to learn how to learn shit, ask. If you want it *done*, find a freelancer.
Mason Wilson
I'm on my phone, moron. But okay, sure.
age = "" while not age.isdigit(): age = input("State your age (Numbers only): " age = int(age) message = "You pay: " if age < 5: message.join("Free entry.") elif age < 8: message.join("Five.") else: message.join("Ten.") print(message)
while not type(age) is int: age = input("numbah onry:")
print("Input OK...") age = int(age) print("You pay:%s" % ("Free entry." if age
Carson Lopez
Pay more attention to types op, I think that's what mixed you up. int() turns a string to an integer. Only strings have a method called isdigit (). Strings can't have /= used on them.
I had the same fix in mind. Python's documentation is shit, especially for newbies. It does
Colton Russell
fails on 17 for example
Hudson White
This was my code, and I ran it before I posted...
Jackson Edwards
It runs correctly on python3 and not python2 because python2 auto converts to int. isdigit checks if a string is comprised only of digits, not if it's a single digit.
Cameron Perez
Your code does indeed work, thank you for your help.
Can anyone offer an explanation as to why it works and why it (if it is) a sub optimal way of doing things?
Juan Long
>Jow Forums is this bad why wouldn't you just write the condition as age%1
Matthew Bailey
It works because I did an int conversion on the string named "age", therefore enabling you to do a comparison with 4 and 8. Otherwise, it'll error and tell you that you can't compare a string with an int
Sebastian Campbell
>not using the dot operator
Connor Wilson
There's nothing really suboptimal about it. Anything left is incredibly trivial nitpicking about moving constructs around and type checking differently. It works where the other iterations didn't because it avoids trying to call isdigit() on an integer AND avoids trying to call
Sebastian Rivera
age = float(input("State your age: "))
while age%1: try: age = float(input("Numbers only: ")) except ValueError: continue print("Input OK...")
if age
Nolan Johnson
you might be more mixed up than OP is
Jaxson Bennett
works fine on all versions of python you dumb nigger
Owen Rivera
it breaks if you enter a non-number on all versions and I have no idea what you think that %1 is doing.
Dylan Cooper
Yeah okay it runs but you've used float whereas we're dealing with age which is int, other than that, this is another valid response to OP's problem
Ryder Fisher
It's not a valid response to OP's problem.
James Rogers
I thought the point was to not allow fractional ages
Owen Nelson
count = -1 age = .5 while age%1: try: count +=1 age = float(input("Numbers only: " if count else "State your age:"))
except: continue print("Input OK...")
if age
Liam Kelly
unless you make something that works on both versions it is
Luke Walker
ahaha what the fuck is this meme tier code
Bentley Wood
make calling isdigit work on 2.7 :)
Gabriel Morgan
where are you learning python from?
Jaxson Rodriguez
while x.isdigit() == False
Oliver Long
State your age: big dicks File "", line 1 big dicks ^ SyntaxError: unexpected EOF while parsing
Christopher Campbell
:
Bentley Powell
obviously i put that in. and the two statements are equivalent in 2 and 3 anyway.
age = getAge("State your Age: ") while not isinstance(age, int): age = getAge("Numbers Only: ") print("Input OK...")
if age
John Ross
int(input())
342.432 Out[8]: 342
Owen Wilson
>input() I always forget this is a thing. I don't think I've ever used it, even when I was first learning Python.
Samuel Mitchell
wut Are you stuck at python 2
Henry Rivera
No. How does that even related? Python 2 has input() just like Python 3 does.
Luke Walker
With python2 it's more believable as you'd probably use raw_input instead But don't tell me you never used the standard stdin function even when first learning
Carson Hall
age = list(input("Age?")) result = list(filter(lambda i : i.isdigit(), age)) print(join('' , result)
Quit what you're doing and go to Codewards OP
Lucas Foster
Never used it, never saw the point. If my script needed user input I've always just hard coded the value or parsed it from sys.argv().
I never bothered with any of this "Hello World: Python edition" crap though. Some MATLAB courses in college taught me the basics of programming and everything else I learned from jumping straight into projects.
Aiden Allen
Jow Forums, apparently.
Nathan Harris
Turn join into str.join
Dylan Green
I did a type on the last line. Should be print(str.join('' , result))