我有一个包含tupels的列表,即
BitmapImage
与
google_blueprint = make_google_blueprint(
client_id='',
client_secret='',
scope=['profile', 'email'],
offline=True
)
我会得到
df = [('apa', 'apc'), ('apa', 'bp'), ('br', 'bpt')]
我怎么能得到' apa'只有那个元组?
答案 0 :(得分:0)
我相信你正在寻找这个:
a, b = df[0]
如果您的数据会将a
设置为apa
,将b
设置为apc
。如果您只想从元组中获取apa
,请按照您的列表进行推荐:
a = df[0][0]