从列表中的元组(包含2个元素)中读取单个元素(包含多个元组)

时间:2018-04-01 00:35:50

标签: python list tuples

我有一个包含tupels的列表,即

BitmapImage

google_blueprint = make_google_blueprint(
    client_id='',
    client_secret='',
    scope=['profile', 'email'],
    offline=True
)

我会得到

df = [('apa', 'apc'), ('apa', 'bp'), ('br', 'bpt')]

我怎么能得到' apa'只有那个元组?

1 个答案:

答案 0 :(得分:0)

我相信你正在寻找这个:

a, b = df[0]

如果您的数据会将a设置为apa,将b设置为apc。如果您只想从元组中获取apa,请按照您的列表进行推荐:

a = df[0][0]