HCF Python Program Not Debugging
def computeHCF(x,y):
if x>y:
small=int(y)
else:
small=int(x)
for i in range(1,small+1):
if ((x%i)==0) and ((y%i)==0)):
hcf=i
return hcf
a=input('Enter first number: ')
b=input('Enter second number: ')
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
I tried this code on Python to compute HCF and it showed:
Exception has occurred: TypeError
not all arguments converted during string formatting
File "C:UsersDellDesktopPythonfindhcf.py", line 7, in computeHCF
if ((x%i)==0 and (y%i)==0):
File "C:UsersDellDesktopPythonfindhcf.py", line 13, in <module>
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
Please help my to figure the mistake that I have done in this program, I tried many things but it didn't work at all. Thank you.
python visual-studio
add a comment |
def computeHCF(x,y):
if x>y:
small=int(y)
else:
small=int(x)
for i in range(1,small+1):
if ((x%i)==0) and ((y%i)==0)):
hcf=i
return hcf
a=input('Enter first number: ')
b=input('Enter second number: ')
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
I tried this code on Python to compute HCF and it showed:
Exception has occurred: TypeError
not all arguments converted during string formatting
File "C:UsersDellDesktopPythonfindhcf.py", line 7, in computeHCF
if ((x%i)==0 and (y%i)==0):
File "C:UsersDellDesktopPythonfindhcf.py", line 13, in <module>
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
Please help my to figure the mistake that I have done in this program, I tried many things but it didn't work at all. Thank you.
python visual-studio
1
input(..)
returns a string. Make sure you convert it to int usingint()
.
– Austin
Nov 17 '18 at 4:18
Thank you so much @Austin ! That solved it!!
– Binish Joshi
Nov 17 '18 at 4:59
add a comment |
def computeHCF(x,y):
if x>y:
small=int(y)
else:
small=int(x)
for i in range(1,small+1):
if ((x%i)==0) and ((y%i)==0)):
hcf=i
return hcf
a=input('Enter first number: ')
b=input('Enter second number: ')
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
I tried this code on Python to compute HCF and it showed:
Exception has occurred: TypeError
not all arguments converted during string formatting
File "C:UsersDellDesktopPythonfindhcf.py", line 7, in computeHCF
if ((x%i)==0 and (y%i)==0):
File "C:UsersDellDesktopPythonfindhcf.py", line 13, in <module>
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
Please help my to figure the mistake that I have done in this program, I tried many things but it didn't work at all. Thank you.
python visual-studio
def computeHCF(x,y):
if x>y:
small=int(y)
else:
small=int(x)
for i in range(1,small+1):
if ((x%i)==0) and ((y%i)==0)):
hcf=i
return hcf
a=input('Enter first number: ')
b=input('Enter second number: ')
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
I tried this code on Python to compute HCF and it showed:
Exception has occurred: TypeError
not all arguments converted during string formatting
File "C:UsersDellDesktopPythonfindhcf.py", line 7, in computeHCF
if ((x%i)==0 and (y%i)==0):
File "C:UsersDellDesktopPythonfindhcf.py", line 13, in <module>
print('The HCF of ',a,' and ',b,' is ',computeHCF(a,b))
Please help my to figure the mistake that I have done in this program, I tried many things but it didn't work at all. Thank you.
python visual-studio
python visual-studio
asked Nov 17 '18 at 3:55
Binish JoshiBinish Joshi
33
33
1
input(..)
returns a string. Make sure you convert it to int usingint()
.
– Austin
Nov 17 '18 at 4:18
Thank you so much @Austin ! That solved it!!
– Binish Joshi
Nov 17 '18 at 4:59
add a comment |
1
input(..)
returns a string. Make sure you convert it to int usingint()
.
– Austin
Nov 17 '18 at 4:18
Thank you so much @Austin ! That solved it!!
– Binish Joshi
Nov 17 '18 at 4:59
1
1
input(..)
returns a string. Make sure you convert it to int using int()
.– Austin
Nov 17 '18 at 4:18
input(..)
returns a string. Make sure you convert it to int using int()
.– Austin
Nov 17 '18 at 4:18
Thank you so much @Austin ! That solved it!!
– Binish Joshi
Nov 17 '18 at 4:59
Thank you so much @Austin ! That solved it!!
– Binish Joshi
Nov 17 '18 at 4:59
add a comment |
1 Answer
1
active
oldest
votes
Probably you are using Python 3.x, which is causing this error. In Python 3.x input() reads the value as a 'string' and not 'int'. You can read integer like this.
a=int(input('Enter first number: '))
If some answer works, you should always 'accept' it.
– Shiv Rajawat
Nov 17 '18 at 7:43
Whoops, my bad, @ShivRajawat I didn't know that! (:
– Binish Joshi
Nov 18 '18 at 9:32
add a comment |
Your Answer
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: "1"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f53348049%2fhcf-python-program-not-debugging%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Probably you are using Python 3.x, which is causing this error. In Python 3.x input() reads the value as a 'string' and not 'int'. You can read integer like this.
a=int(input('Enter first number: '))
If some answer works, you should always 'accept' it.
– Shiv Rajawat
Nov 17 '18 at 7:43
Whoops, my bad, @ShivRajawat I didn't know that! (:
– Binish Joshi
Nov 18 '18 at 9:32
add a comment |
Probably you are using Python 3.x, which is causing this error. In Python 3.x input() reads the value as a 'string' and not 'int'. You can read integer like this.
a=int(input('Enter first number: '))
If some answer works, you should always 'accept' it.
– Shiv Rajawat
Nov 17 '18 at 7:43
Whoops, my bad, @ShivRajawat I didn't know that! (:
– Binish Joshi
Nov 18 '18 at 9:32
add a comment |
Probably you are using Python 3.x, which is causing this error. In Python 3.x input() reads the value as a 'string' and not 'int'. You can read integer like this.
a=int(input('Enter first number: '))
Probably you are using Python 3.x, which is causing this error. In Python 3.x input() reads the value as a 'string' and not 'int'. You can read integer like this.
a=int(input('Enter first number: '))
answered Nov 17 '18 at 4:19
Shiv RajawatShiv Rajawat
24617
24617
If some answer works, you should always 'accept' it.
– Shiv Rajawat
Nov 17 '18 at 7:43
Whoops, my bad, @ShivRajawat I didn't know that! (:
– Binish Joshi
Nov 18 '18 at 9:32
add a comment |
If some answer works, you should always 'accept' it.
– Shiv Rajawat
Nov 17 '18 at 7:43
Whoops, my bad, @ShivRajawat I didn't know that! (:
– Binish Joshi
Nov 18 '18 at 9:32
If some answer works, you should always 'accept' it.
– Shiv Rajawat
Nov 17 '18 at 7:43
If some answer works, you should always 'accept' it.
– Shiv Rajawat
Nov 17 '18 at 7:43
Whoops, my bad, @ShivRajawat I didn't know that! (:
– Binish Joshi
Nov 18 '18 at 9:32
Whoops, my bad, @ShivRajawat I didn't know that! (:
– Binish Joshi
Nov 18 '18 at 9:32
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f53348049%2fhcf-python-program-not-debugging%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
1
input(..)
returns a string. Make sure you convert it to int usingint()
.– Austin
Nov 17 '18 at 4:18
Thank you so much @Austin ! That solved it!!
– Binish Joshi
Nov 17 '18 at 4:59