gpt4 book ai didi

python - 将字符串拆分或提取为函数参数?

转载 作者:太空狗 更新时间:2023-10-30 02:43:52 26 4
gpt4 key购买 nike

假设我有一个接受字符串参数的函数。但我想动态生成它们。似乎没有办法轻松插入它。这是怎么做到的?在这里看我的例子

i_take_strings('one', 'two', 'and_the_letter_C')

s = 'one two and_the_letter_c'

i_take_strings(x for x in s.split()) #python thinks I'm retarded with this attempt

最佳答案

s.split() 已经返回一个列表,因此您可以将其作为 variable arguments 传递给您的函数通过在 * 前面添加如下内容:

i_take_strings(*s.split())

关于python - 将字符串拆分或提取为函数参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31779490/

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