zoukankan      html  css  js  c++  java
  • python函数库及函数标准库

    一、系统库提供的内部函数

    字符函数库:

    1)str.islower() :字符串是否全部是小写

    2)str.isspace() :字符串是否为空

    3)help(str):查询字符串函数库

    4)str.replace(old ,new) : 字符串替换函数  ,(可只替换部分内容)

    5)str.isupper():判断是不是大写

    数学函数:

    import math :引入数学库 ,不是默认的,如果要使用数学函数,需要先引入

    1)math.sin() :求sin30°  如math.sin(3.14/6)   math.sin(math.pi /6 )

    2)math.pi :求pi值  

    3)math.pow(n,m) : n的m次方 

    4)** :几次方  例如3**4  3的4次方

    操作系统函数

    import  os

    os.getcwd() :获取当前的工作路径

    os.listdir(当前目录):获取当前目录下的所有实体 (文档)

    网络函数库:import socket  

    1)获取网络ip地址:socket.gethostbyname('网站ip地址') 

    2)help(socket) :查询socket下的函数库

     二、第三方提供的函数

    开源项目提供的函数 ,需要在网上去下载安装:httplib2    详情可百度相关博客

    1)import urllib :url类

    2)import webbrowser  as web :操作浏览器 .并将webbrowser  取别名为web

    3)urllib.urlopen(url).read(); :打开浏览器并读取相关内容

    4)open('文件名','w').write(需要写入的内容) :把去读的文件写入文件

    5)webbrowser  .open_new_tab('需要打开的html文件') :把相关html文件通过浏览器打开/url

    三、用户自定义函数

    自己编写的模块或者函数

    def关键字 function_name (参数):

    无花括号  ,需要用tab键区分语句块。

     

  • 相关阅读:
    codeforces 814B An express train to reveries
    codeforces 814A An abandoned sentiment from past
    codeforces 785D D. Anton and School
    codeforces 785C Anton and Fairy Tale
    codeforces 791C Bear and Different Names
    AOP详解
    Spring集成JUnit测试
    Spring整合web开发
    IOC装配Bean(注解方式)
    IOC装配Bean(XML方式)
  • 原文地址:https://www.cnblogs.com/linxinmeng/p/7859212.html
Copyright © 2011-2022 走看看