blob: 05598812a1b21187d8a5c91f36ec9d79d8e29e8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
data_type_dict = {
'str': str,
'character': str,
'int': int,
'integer': int,
'float': float,
'double': float,
'bool': bool,
'logical': bool,
'NoneType': type(None),
'None': None
}
|