Select Git revision
BE2_GAN_and_cGAN.ipynb
Forked from
Dellandrea Emmanuel / MSO_3_4-TD2
Source project has a limited visibility.
-
Dellandrea Emmanuel authoredDellandrea Emmanuel authored
10-range.py 500 B
# Modules Python
# import tel_module as mod1
# import un_module as mod2
# mod1.fonc(..) #appel de la fonction fonc du tel_module
# mod2.fonc(..) #appel de la fonction homonyme du un_module
# import tel_module
#
# def ma_fonction():
# localname = tel_module.fonc
# foo = localname(bar)
import scipy.stats as st
st.nanmean()
# Si vous obtenez le message
# ModuleNotFoundError: No module named 'scipy'
# ..vous devez installer le module avec la commande
#
# pip3 install scipy
#