acodingcat
acodingcat
I encountered the same problem before convert, use `pandas` read excel ``` import pandas as pd file_path = "C:\\Users\\acodingcat\\Desktop\\test.xlsx" df = pd.read_excel(file_path) ``` current dataframe  after convert, use `xlsx2csv`...
Hi, python-pygraphviz `1.12` with python `3.11` I'm using pygraphviz to draw directed graph,obtain layout information. It has encountered a problem. ```python import networkx as nx import pandas as pd from...