>>> [','.join(map(str,t)) for t in a]
['4,2,3', '5,9,1', '7,8,9']
>>> from itertools import starmap
>>> list(starmap('{},{},{}'.format,a))
['4,2,3', '5,9,1', '7,8,9']
笨办法,提供一种思路
a = [(4, 2, 3), (5,9,1), (7,8,9)]
i=0
while i<3:
a[i]=str(a[i])[1:3*3-1]
i=i+1
print (a[0:3])
with t1(b1,b2)
as (select '01',1 from dual union
select '01',2 from dual union
select '02', 1 from dual union
select '02' ,2 from dual )
select * from t1 where regexp_substr(b1,'[^0]+',1,1)=b2
/* B1 B2
1 01 1
2 02 2
*/