在 C++ 中,我可以像这样迭代std::string:
std::string
std::string str = "Hello World!"; for (int i = 0; i < str.length(); ++i) { std::cout << str[i] << std::endl; }
如何在 Python 中遍历字符串?
正如约翰内斯所指出的,
for c in "string": #do something with c
for loop您可以使用该构造在 python 中迭代几乎任何东西,
for loop
例如,open("file.txt")返回一个文件对象(并打开文件),遍历它会遍历该文件中的行
open("file.txt")
with open(filename) as f: for line in f: # do something with line
如果这看起来像魔术,那么它有点像,但它背后的想法真的很简单。
有一个简单的迭代器协议可以应用于任何类型的对象,以使for循环在其上工作。
for
只需实现一个定义next()方法的迭代器,并在一个类上实现一个__iter__方法以使其可迭代。(__iter__当然应该返回一个迭代器对象,也就是定义的对象next())
next()
__iter__
见官方文档