zoukankan      html  css  js  c++  java
  • COMP9021--6.24

    1. from timeit import timeit计算程序运行时间

    比如: timeit(list(range(1000)))

    2. if we using jupyter it will keep ranning for many times and giving the average time, also we want the output as a string, so add number= after the'' so we can know hou many characters we want as output

    3. the function remove will cost more time, cause every other character need to change their position, so the time will cost the most if it is the first one in the list

    4. 图像

    from matplolib import pyplots or import matplolib.pyplot as plt

    plt.plot([x轴坐标][y轴坐标]) will get the chart

    otherwise using zip:

    points=[(),(),(),(),()]
    zip(point)
    which is a generator so we need to write it into: list(zip(*points)), will get the same result with ([x][y])

    5. zip 中如果缺少了一个相对应的,如(x,y,z), (1,2), (5,6,7), 则以最短的两位的情况为主

    6. hash(number): when this number become big enough, or it is actually a tuple, those number will be changed due to a particular hash code, the hash code will be different

    7. setup = 

    to do something before timming, so this step could be treated  as start point and steps before do not need to be timming

    8. pop from the beginning need to spend a long time. Remove take a long time as well, which need to find the key and delete it, also every other charcter need to change the position, so as a sequence, searching the position is more importance in speed

    9. set will cost more time

    10. the changes you made will only saved in this function, otherwise we can use global, like global a, which means what we did about a will be saw in other functions as well
    a=10
    def g():
       print(a)
       a=20
       print(a)
    g()
    a

    which is not working cause the first a is global, but after turned it into 20 , it is a local, pyton get confused so it did not work. So it need to be global or local, can not be both at the same time. So to solve this, we can get a new character and make it have the same value with what we want

  • 相关阅读:
    ubuntu 10.04 修改双系统默认启动项
    ubuntu 系统目录结构
    在ubuntu 下搭建 android开发环境
    android 开发包的离线安装方式
    wget 下载ftp整个目录
    Lambda复合条件以及获得EntityFramework 运行后生成的sql 命令
    解决jquery 的datepicker 的本地化以及Today问题
    ubuntu ssh 登录慢问题
    android监控上传小demo之第三步 相片的提交
    临时转mysql编码解决乱码问题
  • 原文地址:https://www.cnblogs.com/eleni/p/11096239.html
Copyright © 2011-2022 走看看