摘要: #_author:Administrator#date:2019/11/5#sys模块 >与python解释器进行交互import sys# #(1)# print(sys.argv)# ['D:/pycharm2017/FullStack/f_s/.idea/inspectionProfiles/ 阅读全文
posted @ 2019-11-05 17:24 Stary_tx 阅读(173) 评论(0) 推荐(0) 编辑
摘要: #_author:LTX#date:2019/11/5#1.os模块import os#(1)print(os.getcwd())#获取当前工作目录 D:\pycharm2017\FullStack\f_s\.idea\inspectionProfiles\week3\day1# os.chdir( 阅读全文
posted @ 2019-11-05 16:41 Stary_tx 阅读(187) 评论(0) 推荐(0) 编辑
摘要: #_author:LTX#date:2019/11/4import random#(1)print(random.random())#0.5863887824309792 0 1之间的随机数#(2)print(random.choice([1,'qsc','234']))# qsc#(3)print 阅读全文
posted @ 2019-11-04 17:49 Stary_tx 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #_author:Administrator#date:2019/11/4#时间模块import time# time - This module provides various functions to manipulate time values.#(1)print(help(time))# 阅读全文
posted @ 2019-11-04 16:56 Stary_tx 阅读(153) 评论(0) 推荐(0) 编辑
摘要: #_author:Administrator#date:2019/11/4#可迭代对象list tuple dict stringl=[1,2,3,4]p=iter(l)#为我们返回了一个迭代器对象printprint(p)#<list_iterator object at 0x01A7ED50># 阅读全文
posted @ 2019-11-04 15:38 Stary_tx 阅读(130) 评论(0) 推荐(0) 编辑
摘要: A 开始吃包子啦B 开始吃包子啦yuwei开始做包子啦做了两个包子包子[0]来了,被[A]吃了包子[0]来了,被[B]吃了做了两个包子包子[1]来了,被[A]吃了包子[1]来了,被[B]吃了做了两个包子包子[2]来了,被[A]吃了包子[2]来了,被[B]吃了做了两个包子包子[3]来了,被[A]吃了包 阅读全文
posted @ 2019-11-04 14:40 Stary_tx 阅读(167) 评论(0) 推荐(0) 编辑
摘要: #_author:生成器#date:2019/11/4def fibo(max): n, before, after = 0, 0, 1 while n<max: yield before# 有暂存功能 before,after=after,before+after n=n+1p=fibo(5)pr 阅读全文
posted @ 2019-11-04 14:36 Stary_tx 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 1123581321 阅读全文
posted @ 2019-11-03 21:58 Stary_tx 阅读(403) 评论(0) 推荐(0) 编辑
摘要: #_author:Administrator#date:2019/11/2#优化#先把展示时间的函数加载进内存import timedef show_time(f): def inner(): start=time.time() f() end=time.time() print('spend ti 阅读全文
posted @ 2019-11-02 12:05 Stary_tx 阅读(620) 评论(0) 推荐(0) 编辑
摘要: #_author:Xing#date:2019/11/2# 装饰器(函数)# 1.作用域:L_E_G_B# 2.高阶函数# (1)函数名可以作为参数输入# (2)函数名可以作为返回值# 3.闭包# 关于闭包:闭包=内部函数+定义函数时的环境def outer(): x=10 def inner(): 阅读全文
posted @ 2019-11-02 12:01 Stary_tx 阅读(144) 评论(0) 推荐(0) 编辑