demo.py 779 Bytes
# -*- coding: utf-8 -*-

# @Time    : 2021/7/28 16:59
# @Author  : Ljq
# @File    : demo.py
# @Software: PyCharm

"""

"""

import json
import datetime,time
import urllib

# print(time.localtime())
import urllib3

print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))

# a = {"aa":"阿三大苏打","bb":"bb","cc":{"cc1":"啊实打","cc2":"ad"}}
# print(a)
# data = {"cc":{"cc1":"2"}}
# b = dict(a,**data)
# print(b)

# def doDcit(**kwargs):
#     a = {"aa": "阿三大苏打", "bb": "bb", "cc": {"cc1": "啊实打","cc2":"ad"}}
#     print(a)
#     b = dict(a,**kwargs)
#     print(b)

a = {"收费单号":"number","车号":"likePlate","商品":"goods","收费员":"pay","客户姓名":"cname","客户卡号":"ic","手机号码":"phone"}
print(a["收费单号"])
urllib3