python 获得花括号里的数据
import restr = "{{182,915},{58,70}}"res = re.sub('{|}','',str)print res.split(',') ##输出:182,915,58,70