美文网首页互联网科技
python的这几个小功能,你都会用了吗?

python的这几个小功能,你都会用了吗?

作者: 派派森森 | 来源:发表于2019-02-25 21:43 被阅读0次

    python 随机抽取

    import random
    country = ['北京', '上海', '重庆', '哈尔滨', '广州', '海南']
    target = random.choice(country)
    target3 = random.sample(country, 3)
    print(f'地点: {target}')
    print(f'地点: {target3}')
    
    

    python 冒泡排序

    lis = [56, 12, 1,8, 354, 10, 100,34,56,7,23,456,234,-58]
    def sortport():
     for i in range(len(lis)-1):
     for j in range(len(lis)-1-i):
     if lis[j] > lis[j+1]:
     lis[j], lis[j+1] = lis[j+1], lis[j]
     return lis
    print(sortport())
    
    

    列出当前目录下所有的文件和目录名

    import os
    print([d for d in os.listdir('.')])
    
    

    python 生成随机验证码

    import random, string
    str1 = '0123456789'
    str2 = string.ascii_letters # 包含所有字母大小写的字符串
    str3 = str1 + str2
    ma1 = random.sample(str3, 6)
    ma1 = ''.join(ma1)
    print(ma1)
    
    

    检查是否只由数字组成

    chri = '12345'
    print(chri.isdigit()) 
    print(chri.isnumeric()) # 这个只针对unicode对象
        ## pandas 默认读取第一个工作簿
        import pandas as pd
        df = pd.read_excel('xxx.xlsx')
        import pandas as pd
    
    

    默认读取第一个工作簿

    import pandas as pd
    df = pd.read_excel('xxx.xlsx')
    
    

    读取所有工作簿

    import pandas as pd
    df_dict = pd.read_excel('xxxx.xlsx', sheet_name=None)
    for sheet_name, df in df_dict.item():
     print(f'工作簿的名字为:{sheet_name}')
     print(df.head())
    
    

    使用Python解压zip文件:

    import zipfile
    zip_ref = zipfile.ZipFile(path_to_zip_file, 'r')
    zip_ref.extractall(directory_to_extract_to)
    zip_ref.close()
    
    

    在Python中复制文件

    import shutil
    shutil.copy('源文件路径', '目标路径')
    
    

    在Python Selenium + Chromedriver中自定义缓存路径

    import os
    from selenium import webdriver
    os.makedirs('cache', exist_ok=True)
    options = webdriver.ChromeOptions()
    options.add_argument('--disk-cache-dir=./cache')
    driver = webdriver.Chrome('./chromedriver', options=options)
    

    在这推荐下小编创建的Python学习交流群556370268,可以获取Python入门基础教程,送给每一位小伙伴,这里是小白聚集地,每天还会直播和大家交流分享经验哦,欢迎初学和进阶中的小伙伴。

    相关文章

      网友评论

        本文标题:python的这几个小功能,你都会用了吗?

        本文链接:https://www.haomeiwen.com/subject/pcpnyqtx.html