2017-03-08 18:11:05 -05:00
|
|
|
try:
|
|
|
|
from array import array
|
|
|
|
except ImportError:
|
|
|
|
print("SKIP")
|
2017-06-08 00:00:57 -04:00
|
|
|
raise SystemExit
|
2014-11-21 13:16:25 -05:00
|
|
|
|
|
|
|
def test(a):
|
|
|
|
print(a)
|
|
|
|
a.append(1.2)
|
|
|
|
print(len(a), '%.3f' % a[0])
|
|
|
|
a.append(1)
|
|
|
|
a.append(False)
|
|
|
|
print(len(a), '%.3f %.3f' % (a[1], a[2]))
|
|
|
|
a[-1] = 3.45
|
|
|
|
print('%.3f' % a[-1])
|
|
|
|
|
|
|
|
test(array('f'))
|
|
|
|
test(array('d'))
|
2015-08-31 18:43:31 -04:00
|
|
|
|
|
|
|
print('{:.4f}'.format(array('f', b'\xcc\xcc\xcc=')[0]))
|