内容简介:## pandas 默认读取第一个工作簿```import pandas as pd
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 彩蛋
# XKCD的漫画 import antigravity
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- Go语言实现本地脚本功能,带服务器功能
- 禅道 9.8.stable 发布,增强待办功能和消息通知功能
- MySQL实现排名并查询指定用户排名功能,并列排名功能
- imi v1.0.4 发布,多个功能组件功能增强和优化
- GitLab 11.11 发布,增强协作性功能以及 DevOps 功能
- GitLab 11.11 发布,增强协作性功能以及 DevOps 功能
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
UNIX网络编程 卷2
W.Richard Stevens / 人民邮电出版社 / 2009-11 / 89.00元
《UNIX网络编程 卷2:进程间通信(英文版·第2版)》是一部UNIX网络编程的经典之作。进程间通信(IPC)几乎是所有Unix程序性能的关键,理解IPC也是理解如何开发不同主机间网络应用程序的必要条件。《UNIX网络编程 卷2:进程间通信(英文版·第2版)》从对Posix IPC和System V IPC的内部结构开始讨论,全面深入地介绍了4种IPC形式:消息传递(管道、FIFO、消息队列)、同......一起来看看 《UNIX网络编程 卷2》 这本书的介绍吧!