把一个str重复len(df.columns)次,放入列表
时间: 2024-01-28 14:03:20 浏览: 44
pandas笔试题.pdf
可以使用列表推导式和字符串的乘法操作符来实现,示例代码如下:
```
df_columns = ['col1', 'col2', 'col3'] # 假设df有3列
str_to_repeat = 'hello'
result_list = [str_to_repeat * len(df_columns) for i in range(n)]
```
其中,`str_to_repeat * len(df_columns)` 表示将字符串 `str_to_repeat` 重复 `len(df_columns)` 次,得到一个新的字符串。`[str_to_repeat * len(df_columns) for i in range(n)]` 则表示将这个新字符串重复 `n` 次,放入一个列表中。
阅读全文