MCPcopy Create free account
hub / github.com/Apress/python-for-matlab-development / a_dict

Function a_dict

code/matlab_py/test_p2m.py:9–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7def a_list():
8 return [12, "three", 4.4, datetime(2022, 3, 1, 12, 13, 14, 654321) ]
9def a_dict():
10 return { 'a' : 12, 'b' : "three", 'c' : 4.4,
11 'd' : datetime(2022, 3, 1, 12, 13, 14, 654321) }
12def nested_dict():
13 return { 'a' : a_tuple(),
14 'b' : a_list(),

Callers 1

nested_dictFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected