如何找到Seaborn版本

时间:2018-08-31 21:13:23

标签: python pandas seaborn

我已经在机器上安装了Seaborn。 Seaborn工作正常。我需要找到安装的Seaborn版本。 我要使用什么命令来查找Seaborn的版本?

1 个答案:

答案 0 :(得分:11)

使用__version__

import seaborn as sns
sns.__version__

'0.7.1'