python判断指数函数 python求指数函数( 三 )


res = sys.stdin
print(res)
import math
# print(math.pi)# 3.141592653589793
print(math.factorial(5))# 120
# 幂运算 第一个参数是底数 第二个参数是幂
print(math.pow(2, 3))# 8.0
# 向上取整和向下取整
print(math.floor(15.999))# 15
print(math.ceil(15.001))# 16
# 四舍五入
print(round(123.51, 1))# 123.5
# 三角函数
print(math.sin(math.pi / 6))# sin(pi/6) 0.49999999999999994
print(math.cos(math.pi / 3))# sin(pi/3) 0.5000000000000001
print(math.tan(math.pi / 4))# sin(pi/6) 0.9999999999999999
# 开方
a = 9
b = 16
print(math.sqrt(a+b))# 5.0
# 以e为底的指数函数
print(math.exp(a))
#8103.083927575384
import random
# 01.random()随机生成[0,1)之间的数前闭后开
print(random.random())# 生成[0,1)之间的小数
# 02.randint() 生成范围内的随机整数全闭
print(random.randint(10, 20))# 生成[10,20]之间的整数
# 03.randrange() 生成范围内的随机整数前闭后开
print(random.randrange(10, 20))# 生成[10,20)之间的整数
# 04.choice参数是列表随机从列表中取一个取一次
print(random.choice([1, 2, 3, 4, 5, 6, 77, 8, 9]))
# 05.sample 的第一个参数 必须是一个可迭代对象
#第二个参数代表着从可迭代对象从随机选取几个 , 选取的对象不能重复
print("".join(random.sample(["a", "b", "c", "d"], 3)))
import datetime as dt# 引入datetime 模块并将其命别名为dt
import time
import calendar# 引入日历模块
# 01.datetime模块
# 001.获取当前时间的具体信息
print(dt.datetime.now())
# 运行结果:
# 2020-12-26 15:36:36.408129
# 年月 日时 分 秒毫秒
# 002.创建日期
print(dt.date(2020,1,1))
# 年月日2020-01-01
# 003.创建时间
print(dt.time(16,30,30))
【python判断指数函数 python求指数函数】 # 时 分 秒:16:30:30
# 004.timedelta() 括号中的默认参数是天
print(dt.datetime.now()+dt.timedelta(3))# 2020-12-25 15:50:15.811738
print(dt.datetime.now()+dt.timedelta(hours=3))# 2020-12-22 18:51:41.723093
print(dt.datetime.now()+dt.timedelta(minutes=10))# 2020-12-22 16:01:41.723093
# 02.time
# 001.当前时间的时间戳
# 时间戳是指从1970—01-01 0:0:0到现在的秒数 utc时间 也叫格林尼治时间
print(time.time())
# 002.按照指定格式输出时间
# print(time.strftime("%Y-%m-%d %H:%M:%S"))# 2020-12-22 15:57:49
# 时间格式:
# %YYear with century as a decimal number.
# %mMonth as a decimal number [01,12].
# %dDay of the month as a decimal number [01,31].
# %HHour (24-hour clock) as a decimal number [00,23].
# %MMinute as a decimal number [00,59].
# %SSecond as a decimal number [00,61].
# %zTime zone offset from UTC.
# %aLocale's abbreviated weekday name.
# %ALocale's full weekday name.
# %bLocale's abbreviated month name.
# %BLocale's full month name.
# %cLocale's appropriate date and time representation.
# %IHour (12-hour clock) as a decimal number [01,12].
# %pLocale's equivalent of either AM or PM.
# 003.ctime 和 asctime 时间格式输出的时间格式一样,
# print(time.asctime())# Tue Dec 22 15:57:49 2020
# print(time.ctime())# Tue Dec 22 15:58:35 2020
# 004.sleep()时间休眠
print("我负责浪")
print(time.sleep(3))
print("你负责漫")
# 005.calender 生成日历
res = calendar.calendar(2021)# 生成2021年的日历
print(res)
# 006.判断是否为闰年
print(calendar.isleap(2020))# True
# 007.从1988年 到 2020年有多少个闰年
print(calendar.leapdays(1988, 2020))# 8

推荐阅读