摘要:
一、参考解法: 二、参考解法: 三、参考解法: 四、参考解法: 使用正则表达式 re.findall() 五、参考解法: 使用正则表达式 re.match() 阅读全文
摘要:
一、参考解法: import time print('当前时间戳:',time.time()) #当前时间戳: 1529908783.3990765 print('获取当前本地时间:',time.localtime()) #获取当前本地时间: time.struct_time(tm_year=201 阅读全文
摘要:
一、参考解法: 二、参考解法: 三、参考解法: 阅读全文
摘要:
一、参考解法: 二、参考解法: 三、参考解法: def prime(n): L=[ ] while n>1: for i in range(2,n+1): if n % i ==0: n = int(n/i) L.append(i) break return L while 1: s = input 阅读全文