gpt4 book ai didi

python - Foreach 逗号分隔项

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

我正在创建我的第一个 Python 应用程序 (PyGTK) 并将使用一个 conf 文件。在那份遗嘱中,我将有一个部分包含一个常规部分,以及其他部分的选项,如下所示:

[profile]
shares = share1, share2, abc234, kallebengtsson

[share1]
username = daniel

我想分离“共享”选项并对它们进行 foreach:

foreach shares:
print username

我该怎么做?在 PHP 中,我会以数组的形式执行此操作,但我不确定 Python。

我正在使用本指南使用 ConfigParser:http://www.doughellmann.com/PyMOTW/ConfigParser/

这是我的代码:https://github.com/danielholm/BareShare/blob/master/bareshare.py

最佳答案

for username in shares.split(', '):
print username

关于python - Foreach 逗号分隔项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8984593/

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