{{{#!python from scipy import * Float_str=['float32','float64','float96','complex64','complex128','complex192'] Float=array([float32,float64,float96,complex64,complex128,complex192]) print 'Numerischer Typ\tSpeicherbelegung' for k in range(Float.size): f=Float_str[k] a=Float[k](1) Speicher=a.nbytes print f,'\t',Speicher,'byte(s)' }}} Ausgabe: ||'''Numerischer Typ'''||||'''Speicherbelegung'''|| ||float32||||4 byte(s)|| ||float64||||8 byte(s)|| ||float96||||12 byte(s)|| ||complex64||||8 byte(s)|| ||complex128||||16 byte(s)|| ||complex192||||24 byte(s)||