Python / pandas , numpy

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

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

According to the FAQ Python 3.7.4 includes NumPy 1.16.2, pandas 0.24.2, SciPy 1.2.1

1 Like

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

i feel so silly …

Thanks a lot for your patience

Don’t worry about it, we’re all here to learn. :smile: