您可以调用以“ A”开头的所有变量来为所有变量设置if函数吗?

时间:2019-08-16 09:45:31

标签: python pycharm

例如,我有一个变量列表: A B C D 阿奎 阿兹克 Bcde 百威 Bzxc

是否可以创建例如if函数,例如:

如果变量“ Axxx”大于1,则为True

我希望能够对所有以字母“ A”开头的变量执行此操作,因此,与单独执行操作相比,它耗时更少。

1 个答案:

答案 0 :(得分:0)

我已经写了一个例子,希望您具有这种行为。

代码:

my_list = ["Abcd", "Aqwe", "Azxc", "Bcde", "Bqwe", "Bzxc"]
for item in my_list:
    if item[0] == "A":
        # Here you can set your variable to True.
        print("Item: {}. It is True".format(item))
        continue
    # Here you can set your variable to False.
    print("Item: {}. It is False".format(item))

输出:

>>> python3 test.py 
Item: Abcd. It is True
Item: Aqwe. It is True
Item: Azxc. It is True
Item: Bcde. It is False
Item: Bqwe. It is False
Item: Bzxc. It is False