Converting input containing special character to float
up vote
4
down vote
favorite
This is the beginning of my program that calculates simple interest. Interest rate will have the following format : 0.97 , 0.67 , 0.17 etc. They won't be bigger than 1. So if the user enter 9 for the interest, program will convert it to 0.09 (by dividing it by 100) . Also user can enter input using '/'. So program will convert input like 97/100 to 0.97.
I wrote the code below. It works but it seems to me that there might be a easier and more elegant solution to this. Maybe using more build-in functions etc. If you help me with that I would be very appreciated.
def toNum(interest):
if '/' not in interest:
if float(interest) > 1:
return float(interest)/100
else:
return float(interest)
else:
l=
n = 0
count = 1
list_interest=
for e in interest:
list_interest.append(e)
for e in list_interest:
if count == 1 or count == 3:
l.append(e)
count = count +1
continue
if e == '/':
n = n + 1
count = count +1
else:
l[n] = l[n] + e
return int(l[0]) / int(l[1])
interest = input("Interest rate: ")
interest = toNum(interest)
print(interest)
python python-3.x
add a comment |
up vote
4
down vote
favorite
This is the beginning of my program that calculates simple interest. Interest rate will have the following format : 0.97 , 0.67 , 0.17 etc. They won't be bigger than 1. So if the user enter 9 for the interest, program will convert it to 0.09 (by dividing it by 100) . Also user can enter input using '/'. So program will convert input like 97/100 to 0.97.
I wrote the code below. It works but it seems to me that there might be a easier and more elegant solution to this. Maybe using more build-in functions etc. If you help me with that I would be very appreciated.
def toNum(interest):
if '/' not in interest:
if float(interest) > 1:
return float(interest)/100
else:
return float(interest)
else:
l=
n = 0
count = 1
list_interest=
for e in interest:
list_interest.append(e)
for e in list_interest:
if count == 1 or count == 3:
l.append(e)
count = count +1
continue
if e == '/':
n = n + 1
count = count +1
else:
l[n] = l[n] + e
return int(l[0]) / int(l[1])
interest = input("Interest rate: ")
interest = toNum(interest)
print(interest)
python python-3.x
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
This is the beginning of my program that calculates simple interest. Interest rate will have the following format : 0.97 , 0.67 , 0.17 etc. They won't be bigger than 1. So if the user enter 9 for the interest, program will convert it to 0.09 (by dividing it by 100) . Also user can enter input using '/'. So program will convert input like 97/100 to 0.97.
I wrote the code below. It works but it seems to me that there might be a easier and more elegant solution to this. Maybe using more build-in functions etc. If you help me with that I would be very appreciated.
def toNum(interest):
if '/' not in interest:
if float(interest) > 1:
return float(interest)/100
else:
return float(interest)
else:
l=
n = 0
count = 1
list_interest=
for e in interest:
list_interest.append(e)
for e in list_interest:
if count == 1 or count == 3:
l.append(e)
count = count +1
continue
if e == '/':
n = n + 1
count = count +1
else:
l[n] = l[n] + e
return int(l[0]) / int(l[1])
interest = input("Interest rate: ")
interest = toNum(interest)
print(interest)
python python-3.x
This is the beginning of my program that calculates simple interest. Interest rate will have the following format : 0.97 , 0.67 , 0.17 etc. They won't be bigger than 1. So if the user enter 9 for the interest, program will convert it to 0.09 (by dividing it by 100) . Also user can enter input using '/'. So program will convert input like 97/100 to 0.97.
I wrote the code below. It works but it seems to me that there might be a easier and more elegant solution to this. Maybe using more build-in functions etc. If you help me with that I would be very appreciated.
def toNum(interest):
if '/' not in interest:
if float(interest) > 1:
return float(interest)/100
else:
return float(interest)
else:
l=
n = 0
count = 1
list_interest=
for e in interest:
list_interest.append(e)
for e in list_interest:
if count == 1 or count == 3:
l.append(e)
count = count +1
continue
if e == '/':
n = n + 1
count = count +1
else:
l[n] = l[n] + e
return int(l[0]) / int(l[1])
interest = input("Interest rate: ")
interest = toNum(interest)
print(interest)
python python-3.x
python python-3.x
asked Nov 26 at 13:51
ikadorus
234
234
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
For reading a fraction such as "97/100", you can use the fractions
library.
For example:
from fractions import Fraction
f = Fraction("97/100")
print(float(f)) # prints 0.97
And because the constructor also takes a float, we can remove the check for /
. Therefore, the final code is:
from fractions import Fraction
def toNum(interest):
f = Fraction(interest)
f = float(f)
if f > 1:
f /= 100
return f
print(toNum("97/100")) # prints 0.97
print(toNum(0.97)) # prints 0.97
print(toNum(9)) # prints 0.09
1
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
– Mathias Ettinger
Nov 26 at 15:59
@MathiasEttinger That's also a good option, just depends on preference.
– esote
Nov 26 at 16:14
add a comment |
up vote
1
down vote
While the answer by @esote is correct and I would also recommend using the fractions
module, you should also work on your text parsing. In this case you could have used a simple str.split
and map
to parse the string containing a /
:
if "/" in interest:
numerator, denominator = map(int, interest.split("/"))
return numerator / denominator
Note that int
ignores whitespace, so this works with both "97/100"
, "97 / 100"
and any combination thereof.
Note also that using sensible names makes it immediately obvious what this code does.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
For reading a fraction such as "97/100", you can use the fractions
library.
For example:
from fractions import Fraction
f = Fraction("97/100")
print(float(f)) # prints 0.97
And because the constructor also takes a float, we can remove the check for /
. Therefore, the final code is:
from fractions import Fraction
def toNum(interest):
f = Fraction(interest)
f = float(f)
if f > 1:
f /= 100
return f
print(toNum("97/100")) # prints 0.97
print(toNum(0.97)) # prints 0.97
print(toNum(9)) # prints 0.09
1
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
– Mathias Ettinger
Nov 26 at 15:59
@MathiasEttinger That's also a good option, just depends on preference.
– esote
Nov 26 at 16:14
add a comment |
up vote
4
down vote
accepted
For reading a fraction such as "97/100", you can use the fractions
library.
For example:
from fractions import Fraction
f = Fraction("97/100")
print(float(f)) # prints 0.97
And because the constructor also takes a float, we can remove the check for /
. Therefore, the final code is:
from fractions import Fraction
def toNum(interest):
f = Fraction(interest)
f = float(f)
if f > 1:
f /= 100
return f
print(toNum("97/100")) # prints 0.97
print(toNum(0.97)) # prints 0.97
print(toNum(9)) # prints 0.09
1
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
– Mathias Ettinger
Nov 26 at 15:59
@MathiasEttinger That's also a good option, just depends on preference.
– esote
Nov 26 at 16:14
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
For reading a fraction such as "97/100", you can use the fractions
library.
For example:
from fractions import Fraction
f = Fraction("97/100")
print(float(f)) # prints 0.97
And because the constructor also takes a float, we can remove the check for /
. Therefore, the final code is:
from fractions import Fraction
def toNum(interest):
f = Fraction(interest)
f = float(f)
if f > 1:
f /= 100
return f
print(toNum("97/100")) # prints 0.97
print(toNum(0.97)) # prints 0.97
print(toNum(9)) # prints 0.09
For reading a fraction such as "97/100", you can use the fractions
library.
For example:
from fractions import Fraction
f = Fraction("97/100")
print(float(f)) # prints 0.97
And because the constructor also takes a float, we can remove the check for /
. Therefore, the final code is:
from fractions import Fraction
def toNum(interest):
f = Fraction(interest)
f = float(f)
if f > 1:
f /= 100
return f
print(toNum("97/100")) # prints 0.97
print(toNum(0.97)) # prints 0.97
print(toNum(9)) # prints 0.09
edited Nov 26 at 15:03
answered Nov 26 at 14:11
esote
1,4151731
1,4151731
1
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
– Mathias Ettinger
Nov 26 at 15:59
@MathiasEttinger That's also a good option, just depends on preference.
– esote
Nov 26 at 16:14
add a comment |
1
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
– Mathias Ettinger
Nov 26 at 15:59
@MathiasEttinger That's also a good option, just depends on preference.
– esote
Nov 26 at 16:14
1
1
Why convert to
float
at all and not keep a fractions.Fraction
object all along?– Mathias Ettinger
Nov 26 at 15:59
Why convert to
float
at all and not keep a fractions.Fraction
object all along?– Mathias Ettinger
Nov 26 at 15:59
@MathiasEttinger That's also a good option, just depends on preference.
– esote
Nov 26 at 16:14
@MathiasEttinger That's also a good option, just depends on preference.
– esote
Nov 26 at 16:14
add a comment |
up vote
1
down vote
While the answer by @esote is correct and I would also recommend using the fractions
module, you should also work on your text parsing. In this case you could have used a simple str.split
and map
to parse the string containing a /
:
if "/" in interest:
numerator, denominator = map(int, interest.split("/"))
return numerator / denominator
Note that int
ignores whitespace, so this works with both "97/100"
, "97 / 100"
and any combination thereof.
Note also that using sensible names makes it immediately obvious what this code does.
add a comment |
up vote
1
down vote
While the answer by @esote is correct and I would also recommend using the fractions
module, you should also work on your text parsing. In this case you could have used a simple str.split
and map
to parse the string containing a /
:
if "/" in interest:
numerator, denominator = map(int, interest.split("/"))
return numerator / denominator
Note that int
ignores whitespace, so this works with both "97/100"
, "97 / 100"
and any combination thereof.
Note also that using sensible names makes it immediately obvious what this code does.
add a comment |
up vote
1
down vote
up vote
1
down vote
While the answer by @esote is correct and I would also recommend using the fractions
module, you should also work on your text parsing. In this case you could have used a simple str.split
and map
to parse the string containing a /
:
if "/" in interest:
numerator, denominator = map(int, interest.split("/"))
return numerator / denominator
Note that int
ignores whitespace, so this works with both "97/100"
, "97 / 100"
and any combination thereof.
Note also that using sensible names makes it immediately obvious what this code does.
While the answer by @esote is correct and I would also recommend using the fractions
module, you should also work on your text parsing. In this case you could have used a simple str.split
and map
to parse the string containing a /
:
if "/" in interest:
numerator, denominator = map(int, interest.split("/"))
return numerator / denominator
Note that int
ignores whitespace, so this works with both "97/100"
, "97 / 100"
and any combination thereof.
Note also that using sensible names makes it immediately obvious what this code does.
answered Nov 27 at 11:27
Graipher
22.6k53384
22.6k53384
add a comment |
add a comment |
Thanks for contributing an answer to Code Review Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodereview.stackexchange.com%2fquestions%2f208448%2fconverting-input-containing-special-character-to-float%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown