首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > perl python >

关于python中字符串的分割有关问题

2012-09-15 
关于python中字符串的分割问题test 21 34我想得到21+34当时想的方法是:test.split()int(test[0])+int(

关于python中字符串的分割问题
test = "21 34"
我想得到21+34
当时想的方法是:
test.split()
int(test[0])+int(test[1])
试过之后发现有问题:
>>> test = "21 34"
>>> test.split()
['21', '34']
>>> test[0]
'2'
>>> test[1]
'1'
>>>

求正解.

[解决办法]
谢谢楼主

热点排行