Converting input containing special character to float
$begingroup$
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
$endgroup$
add a comment |
$begingroup$
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
$endgroup$
add a comment |
$begingroup$
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
$endgroup$
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 '18 at 13:51
ikadorusikadorus
234
234
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
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
$endgroup$
1
$begingroup$
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
$endgroup$
– Mathias Ettinger
Nov 26 '18 at 15:59
$begingroup$
@MathiasEttinger That's also a good option, just depends on preference.
$endgroup$
– esote
Nov 26 '18 at 16:14
add a comment |
$begingroup$
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.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
});
});
}, "mathjax-editing");
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "196"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
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
$endgroup$
1
$begingroup$
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
$endgroup$
– Mathias Ettinger
Nov 26 '18 at 15:59
$begingroup$
@MathiasEttinger That's also a good option, just depends on preference.
$endgroup$
– esote
Nov 26 '18 at 16:14
add a comment |
$begingroup$
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
$endgroup$
1
$begingroup$
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
$endgroup$
– Mathias Ettinger
Nov 26 '18 at 15:59
$begingroup$
@MathiasEttinger That's also a good option, just depends on preference.
$endgroup$
– esote
Nov 26 '18 at 16:14
add a comment |
$begingroup$
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
$endgroup$
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 '18 at 15:03
answered Nov 26 '18 at 14:11
esoteesote
2,6391934
2,6391934
1
$begingroup$
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
$endgroup$
– Mathias Ettinger
Nov 26 '18 at 15:59
$begingroup$
@MathiasEttinger That's also a good option, just depends on preference.
$endgroup$
– esote
Nov 26 '18 at 16:14
add a comment |
1
$begingroup$
Why convert tofloat
at all and not keep afractions.Fraction
object all along?
$endgroup$
– Mathias Ettinger
Nov 26 '18 at 15:59
$begingroup$
@MathiasEttinger That's also a good option, just depends on preference.
$endgroup$
– esote
Nov 26 '18 at 16:14
1
1
$begingroup$
Why convert to
float
at all and not keep a fractions.Fraction
object all along?$endgroup$
– Mathias Ettinger
Nov 26 '18 at 15:59
$begingroup$
Why convert to
float
at all and not keep a fractions.Fraction
object all along?$endgroup$
– Mathias Ettinger
Nov 26 '18 at 15:59
$begingroup$
@MathiasEttinger That's also a good option, just depends on preference.
$endgroup$
– esote
Nov 26 '18 at 16:14
$begingroup$
@MathiasEttinger That's also a good option, just depends on preference.
$endgroup$
– esote
Nov 26 '18 at 16:14
add a comment |
$begingroup$
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.
$endgroup$
add a comment |
$begingroup$
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.
$endgroup$
add a comment |
$begingroup$
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.
$endgroup$
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 '18 at 11:27
GraipherGraipher
23.9k53585
23.9k53585
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.
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