在Python中,我有一个字符串列表,每隔7个元素重复相同的字符串:
test_list = ['1315', '1415', '1515', '1615', '1715', '1815','1915', '1315','1415', '1515', and so on].
我希望只能打印出一个特定元素的索引,例如所有' 1415'变量。我可以通过执行'1315'
为test_list[::7]
执行此操作,这将返回列表中的所有'1315'
。我现在想对列表中的每个其他字符串执行此操作。
答案 0 :(得分:1)
使用列表理解:
std::string x = "Hello Word";
char p = x[0]; //p now contains 'H'
答案 1 :(得分:0)
>>> ["foo", "bar", "baz"].index('bar')
1
通过这个结构,你可以拥有元素的位置。 这是Lists
的python引用