Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to convert a string into integer in python. I am typecasting it, but in vain please help!!

t=raw_input()
c=[]
for j in range(0,int(t)):
    n=raw_input()
    a=[]
    a,b= (int(i) for i in n.split(' '))
    d=pow(a,b)
    d.str()
    c.append(d[0])
for j in c:
    print j

When I try to convert it to string, it's showing an error like int doesn't have any attribute called str.

share|improve this question
6  
looking at your last question, I wonder, have you actually try to look at some basic material: docs.python.org/tutorial/index.html ? – SilentGhost Jun 7 '09 at 10:41
1  
So, did you try d2=str(d) c.append(d2[0]) is that what you want? – nik Jun 7 '09 at 10:43
3  
use str(d) for getting string form of an integer. – Arnab Ghosal Jan 13 '12 at 11:04
1  
No answer you could accept? – Prof. Falken Mar 20 at 13:38
1  
show 1 more comment

6 Answers

>>> str(10)
'10'
>>> int('10')
10

[Edit]

Links to the documentation:
int()
str()

[Edit]

The problem seems to come from this line: d.str()
Conversion to string is done with the builtin str() function, which basically calls the __str__() method of its parameter.

Also, it shouldn't be necessary to call pow(). Try using the ** operator.

share|improve this answer

Try this:

str(i)
share|improve this answer

There is not typecast and no type coercion in python. You have to convert your variable in a explicit way.

To convert an object in string you use the str() function. It works with any object that has a method called __str__() defined, in fact

str(a)

is equivalent to

a.__str__()

The same is if you want to convert something to int, float ect...

share|improve this answer
a=2

you can use str(a) which gives you a string object of int(2)

share|improve this answer

To manage non-integer inputs.

number = raw_input()
try:
    value = int(number)
except ValueError:
    value = 0


Ok, if i take your latest code and rewrite a bit to get it working with python,

t=raw_input()
c=[]
for j in range(0,int(t)):
    n=raw_input()
    a=[]
    a,b= (int(i) for i in n.split(' '))
    d=pow(a,b)
    d2=str(d)
    c.append(d2[0])
for j in c:
    print j

It gives me something like,

>>> 2
>>> 8 2
>>> 2 3
6
8

Which is the first characters of the string result pow(a,b). What are we trying to do here?

share|improve this answer
>>> i = 5
>>> s = str(5)
>>> print "Hello, world the number is " + s
Hello, world the number is 5
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.