Environnement d'exploitation
Xeon E5-2620 v4 (8 noyaux) x 2
32GB RAM
CentOS 6.8 (64bit)
openmpi-1.8.x86_64 et ses-devel
mpich.x86_64 3.1-5.el6 et ses-devel
gcc version 4.4.7 (Et gfortran)
NCAR Command Language Version 6.3.0
WRF v3.7.Utilisez 1.
Python 2.6.6 (r266:84292, Aug 18 2016, 15:13:37)
Python 3.6.0 on virtualenv
Le code ci-dessous fonctionnait bien dans Python 2.
test_numpy_170317.py
#!/usr/bin/env python
import numpy as np
vals = map(float, [3., 1., 4.])
total_val = np.sum(vals)
print('total: %.2f' % total_val)
Lorsque je l'exécute sur Python 3, j'obtiens l'erreur suivante:
Traceback (most recent call last):
File "test_numpy_170317.py", line 7, in <module>
print('total: %.2f' % total_val)
TypeError: must be real number, not map
Dans Python 2, map () a renvoyé un objet de liste. Dans Python 3, ce qui est retourné par map () semble être un objet de carte.
Référence http://stackoverflow.com/questions/1303347/getting-a-map-to-return-a-list-in-python-3-x
En enfermant l'objet map dans list (), l'erreur a disparu.
test_numpy_170317.py
#!/usr/bin/env python
import numpy as np
vals = list(map(float, [3., 1., 4.]))
total_val = np.sum(vals)
print('total: %.2f' % total_val)
Recommended Posts