import os
import time
import urllib.request
import math
# 标准库有 os、time、urllib、request
import requests
# 第三方库有很多 requests、pytest、可以使用pip install xxx进行安装第三方库
r = requests.post("http://httpbin.org/post",data={"key":"value"})
# print(r.status_code)
#
# print(r.encoding + "查看编码")
# r.encoding = "utf-8"
print(r.text + "查看返回结果")
print(r.raw)
# os.mkdir("a.txt")
# os.removedirs("a.txt")
# 打印当前所有的目录
print(os.listdir("./"))
# 获取当前的路径
print(os.getcwd())
print(os.path.exists("b"))
# if not os.path.exists("b"):# 判断当前目录下是否存在文件夹b 若不存在则创建文件夹b
# os.mkdir("b")
# if not os.path.exists("b/a.txt"):
# open("b/a.txt","w").write("qwer")
# 国外的时间格式
print(time.asctime())
# 时间戳
print(time.time())
# 将时间戳转化成时间的元组
print(time.localtime())
# 将时间戳转化成带格式的时间
print(time.strftime(format("%Y-%m-%d %H:%M:%S")))
# 获取两天前的当前时间
now_time = time.time()
two_day_before = now_time - 60*60*24*2
time_tuple = time.localtime(two_day_before)# 转成元组
print(time.strftime("%Y-%m-%d %H:%M:%S",time_tuple))# 格式化时间
# 打开网址
response = urllib.request.urlopen("http://www.baidu.com")
print(response.status)
print(response.headers)
print("-=======================math库===================-")
# 向上取最小的正数
print(math.ceil(6.7))
# 向下取最小的正数
print(math.floor(6.8))
# 取平方根
print(math.sqrt(26))
|