zoukankan      html  css  js  c++  java
  • 23 Python常用模块(一)

    1. 简单了解模块

         写的每一个py文件都是一个模块.

        还有一些我们一直在使用的模块

        buildins 内置模块. print, input

        random 主要是和随机相关的内容

            random()    随机小数

            uninform(a,b) 随机小数

            randint(a,b)  随机整数

            choice() 随机选择一个

            sample() 随机选择多个

            shuffle() 打乱

    2. Collections

        1. Counter 计数器

        2. defaultdict 默认值字典

        3. OrderedDict 有序字典

        数据结构(队列, 栈)

            栈:先进后出

                Stack

    class StackFullException(Exception):
        pass
    
    class StackEmptyException(Exception):
        pass
    
    class Stack:
        def __init__(self,size):
            self.size = size
            self.lst = []
            self.top = 0
    
        def push(self,el):
            if self.top >=self.size:
                raise StackFullException("超范围了")
            self.lst.insert(self.top,el)
            self.top += 1
    
        def pop(self):
            if self.top == 0:
                raise StackFullException("拿空了")
            self.top -= 1
            el = self.lst[self.top]
            return el
    
    s = Stack(4)
    
    s.push("")
    s.push("")
    s.push("")
    s.push("")
    
    print(s.pop())
    print(s.pop())
    print(s.pop())

    队列: 先进先出

             Queue

    import queue
    q = queue.Queue()
    q.put("李嘉诚1")
    q.put("李嘉诚2")
    q.put("李嘉诚3")
    q.put("李嘉诚4")
    q.put("李嘉诚5")
    
    print(q.get())
    print(q.get())
    print(q.get())
    print(q.get())
    print(q.get())

    3. Time模块

        时间有三种:

            结构化时间 gmtime() localtime()

            时间戳  time.time()  time.mktime()

            格式化时间 time.strftime() time.strptime()

            时间转化:

                数字 -> 字符串

                struct_time = time.localtime(数字)

                str = time.strftime("格式", struct_time)

    3. Time模块
    
        时间有三种:
    
            结构化时间 gmtime() localtime()
    
            时间戳  time.time()  time.mktime()
    
            格式化时间 time.strftime() time.strptime()
    
            时间转化:
    
                数字 -> 字符串
    
                struct_time = time.localtime(数字)
    
                str = time.strftime("格式", struct_time)

       字符串 -> 数字

                  struct_time = time.strptime(字符串, "格式")

                  num = time.mktime(struct_time)

    strt = input("请输入一个时间")
    t = time.strptime(strt,"%Y-%m-%d %H:%M:%S")
    a = time.mktime(t)
    print(a)

    4. functools

        wraps   给装饰器中的inner改名字

        reduce  归纳.

        偏函数   把函数的参数固定.

  • 相关阅读:
    强烈推荐:240多个jQuery插件【转】
    逆变与协变详解
    Mac入门 (二) 使用VMware Fusion虚拟机
    JQUERY UI DOWNLOAD
    几个常用Json组件的性能测试
    jQuery.extend 函数详解
    获取Portal中POWL程序的APPLID
    设计师和开发人员更快完成工作需求的20个惊人的jqury插件教程(上)
    Linux kernel中网络设备的管理
    mongodb修改器
  • 原文地址:https://www.cnblogs.com/a2534786642/p/10182027.html
Copyright © 2011-2022 走看看