We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having some trouble converting strings that are numbers into integers or numbers.
In the playground:
a_number = int("110") print 'a number is {a_number}'
prints a number is 0
a number is 0
I also tried number():
number()
a_number = number("110") print 'a number is {a_number}'
prints a number is 1
a number is 1
Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
This should be fixed. Thanks for reporting this.
Sorry, something went wrong.
No branches or pull requests
Having some trouble converting strings that are numbers into integers or numbers.
In the playground:
prints
a number is 0
I also tried
number()
:prints
a number is 1
Am I doing something wrong?
The text was updated successfully, but these errors were encountered: