egos
November 4, 2020, 4:25pm
#1
Hello
I am new to the site, sorry if the question has already been asked but I did not find an answer on the forum
Is it possible to use Pandas or Numpy libraries with python?
I am also a pyhton trainer and it seems strange to me to code algorithms without one of these libraries
Thank you in advance for your answers and advice
logiqub
November 4, 2020, 4:31pm
#2
Hello @egos (and welcome),
You were looking for : https://www.codingame.com/faq .
Python 3.7.4
Includes NumPy 1.16.2, pandas 0.24.2, SciPy 1.2.1
1 Like
TBali
November 4, 2020, 4:31pm
#3
According to the FAQ Python 3.7.4 includes NumPy 1.16.2, pandas 0.24.2, SciPy 1.2.1
1 Like
Niako
November 4, 2020, 5:01pm
#4
Also:
import sys, numpy, scipy, pandas
print(sys.version)
print(numpy.__version__)
print(scipy.__version__)
print(pandas.__version__)
Output:
3.7.4+ (default, Sep 4 2019, 08:03:05)
[GCC 9.2.1 20190827]
1.16.2
1.2.1
0.24.2
1 Like
egos
November 4, 2020, 5:10pm
#5
i feel so silly …
Thanks a lot for your patience
logiqub
November 4, 2020, 5:21pm
#6
Don’t worry about it, we’re all here to learn.