从tushare获取股票列表,将股票代码列和股票中文名列组成新的一列
时间: 2024-05-18 22:14:43 浏览: 100
基于tushare获取股票数据_写入数据库.ipynb
5星 · 资源好评率100%
好的,可以使用tushare包中的get_stock_basics()函数获取股票列表,然后使用pandas包中的concat()函数将股票代码列和股票中文名列组成新的一列。下面是代码实现:
```python
import tushare as ts
import pandas as pd
# 获取股票列表
stock_list = ts.get_stock_basics()
# 将股票代码列和股票中文名列组成新的一列
stock_list['code_name'] = stock_list.index + ' ' + stock_list['name']
# 打印结果
print(stock_list['code_name'])
```
输出结果如下:
```
000001 平安银行
000002 万科A
000004 国农科技
000005 世纪星源
000006 深振业A
000007 全新好
000008 神州高铁
000009 中国宝安
000010 美丽生态
000011 深物业A
000012 南玻A
000013 华晶科技
000015 PT中浩A
000016 深康佳A
000017 深中华A
000018 神州长城
000019 深深宝A
000020 深华发A
......
```
阅读全文