Is there any good idea how to get the second digit of a string? For example:
aaa = 122
bbb = 333
rest = bbb-aaa
if rest[:2] == 1:
do something..
Is there any good idea how to get the second digit of a string? For example:
aaa = 122
bbb = 333
rest = bbb-aaa
if rest[:2] == 1:
do something..
Index it:
>>> mystr = "123"
>>> mystr[1]
'2'
>>> mystr[-2]
'2'
>>>
If it is a number, then you need to convert it to a string first with str
:
>>> myint = 123
>>> str(myint)[1]
'2'
>>> str(myint)[-2]
'2'
>>>
Convert the integer to a string first using the built-in
str()
function and then slice it accordinglySo Try this: