Maison  >  Questions et réponses  >  le corps du texte

python - Dataframe里字段过长被截取怎么能显示完整的数据

黄舟黄舟2762 Il y a quelques jours784

répondre à tous(2)je répondrai

  • 怪我咯

    怪我咯2017-04-18 10:07:10

    Merci à Kadakyo pour la réponse, j'ai finalement résolu le problème en utilisant pd.set_option('max_colwidth', 200)

    import pandas as pd
    ……
    df = pd.DataFrame(data, columns=cols)
    ……
    pd.set_option('max_colwidth', 200)
    print(df)

    répondre
    0
  • 天蓬老师

    天蓬老师2017-04-18 10:07:10

    Essayez-le pd.set_option('display.width', 200)

    répondre
    0
  • Annulerrépondre