我正在尝试将我的python代码(在PyCharm中)导出为带有行号的html。使用“文件>导出到HTML”并选择选项:“显示行号”。
提供行号,但仅针对注释行,不提供代码。如下
我确定我缺少一些简单的东西,但是找不到什么?
1 import pandas as pd
import csv
import os
current_file_path = __file__
current_file_dir = os.path.dirname(__file__)
def test (input_text):
"""
2 This is a
3 test
4 """
#do something
print(input_text)
print("there are no line numbers here")
我要导出为html的代码如下:
import pandas as pd
import csv
import os
current_file_path = __file__
current_file_dir = os.path.dirname(__file__)
def test (input_text):
"""
This is a
test
"""
#do something
print(input_text)
print("there are no line numbers here")