gpt4 book ai didi

python:根据条件将列表转换为二元决策

转载 作者:太空宇宙 更新时间:2023-11-04 09:54:42 43 4
gpt4 key购买 nike

有没有一种简单的方法可以根据条件将列表转换为二元决策?例如:

patientAge = [19, 15, 13, 21, 37]

# wanted output: [1, 0, 0, 1, 1] # true if >18 otherwise false
# e.g. in matlab simply "patientAge>18"

最佳答案

只需使用列表理解:

>>> patientAge = [19, 15, 13, 21, 37]
>>> [age > 18 for age in patientAge]
[True, False, False, True, True]

如果你必须有 1 或 0:

>>> [int(age > 18) for age in patientAge]
[1, 0, 0, 1, 1]

关于python:根据条件将列表转换为二元决策,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46363347/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com