Files
tst/script/test_list.py
2026-03-13 15:28:30 +01:00

10 lines
105 B
Python

a = [1,2,3]
d = to_array(a)
l=to_list(d)
print (d)
print (l)
print (type(a)==type(l))
print (a==l)