摘要:
#手机号格式第一为固定为1,第二位只能为3、4、5、7或8,第三位的值又与第二位值相关 import random # a=[i for i in range(10) if i!=4] 等价于 a=[0,1,2,3,5,6,7,8,9] def phoneNumber(): # 第二位数字 seco 阅读全文
摘要:
Data转Timestamp:Timestamp createTime = new Timestamp(new Date().getTime()); Timestamp 转Data: Timestamp t = new Timestamp(System.currentTimeMillis()); D 阅读全文