1
0

typing.py 388 B

12345678910111213141516
  1. from typing import Dict, List, Tuple, Union, Optional, Callable, IO
  2. gid_t = str # garbage bag id 类型
  3. uid_t = str # user id 类型
  4. uname_t = str # user name 类型
  5. passwd_t = str # user password 类型
  6. phone_t = str
  7. count_t = int # 计数类型 (垃圾计数)
  8. score_t = int # 积分类型
  9. location_t = str
  10. time_t = float # 时间类型
  11. day_t = int
  12. enum = int # 枚举类型