gpt4 book ai didi

python - 如何将列表中的字符串用作 python 中的字符串方法?

转载 作者:行者123 更新时间:2023-12-04 15:10:52 25 4
gpt4 key购买 nike

我正在尝试以三种不同的方式打印一些给定的字符串,这些方式由字符串方法提供,这些方式在列表中作为字符串。有没有办法将这些字符串转换为在循环迭代期间使用它的方法?

some_string = "hello people!"


string_operations = [".upper()", ".lower()", ".capitalize()"]
for methods in string_operations:
print(some_string+methods)

最佳答案

在这种情况下,您可以执行以下操作:

some_string = "hello people!"
string_methods = [str.upper, str.lower, str.capitalize]
for method in string_methods:
print(method(some_string))

关于python - 如何将列表中的字符串用作 python 中的字符串方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65229751/

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