我正在获取mysql select语句作为元组。如何从第二个值中提取0或1?这是代码。
records = cursor.fetchall()
print(records)
('billtest1407337726531', '\x00')
records1 = curson.fetchall()
print(records1)
('billtest1407337726531', '\x01')
我需要存储上述元组记录和records1中的值0或1
我尝试了如下操作,但是没有用。
for row in records
print(row[1])
print((tuple(row[1:1]))
答案 0 :(得分:1)
您希望ord(records[1])
取第二个值并将其从字符串转换为整数(不解析,仅转换字节)。