笔记:python基础之内置函数1

\r:回到行首。
exec(’’):可执行在字符串中的但却是python语句的代码→没有返回值,适合处理简单流程控制。
eval(’’):可执行在字符串中的python语句代码→有返回值,适用于明确知道要执行的代码是什么,适合处理有结果的简单计算。

exec('print(123)')
eval('print(123)')
print(eval('1+2+3+4'))   # 有返回值
print(exec('1+2+3+4'))   #没有返回值
#exec和eval都可以执行 字符串类型的代码
#eval有返回值  —— 有结果的简单计算
#exec没有返回值   —— 简单流程控制
#eval只能用在你明确知道你要执行的代码是什么

code = '''for i in range(10):
print(i*'*')
 '''
exec(code)

single():交互类的,如‘iput()’。
compile编译函数,例如:先编译成exec执行的语句:com=compile(code(‘语句’),’ ',‘exec’/‘eval’/‘single’)→exec(com)。

code1 = 'for i in range(0,10): print (i)'
compile1 = compile(code1,'','exec')
exec(compile1)

code2 = '1 + 2 + 3 + 4'
compile2 = compile(code2,'','eval')
print(eval(compile2))

code3 = 'name = input("please input your name:")'
compile3 = compile(code3,'','single')
exec(compile3) #执行时显示交互命令,提示输入
print(name)
name #执行后name变量有值
"'pythoner'"

数据类型转换
print()
input()
len()
type()
open()
tuple()
list()
int()
bool()
set()
dir()
id()
str()

变量与作用域函数
print(locals()) #返回本地作用域中的所有名字
print(globals()) #返回全局作用域中的所有名字
global 变量
nonlocal 变量

迭代器.next()
next(迭代器)
迭代器 = iter(可迭代的)
迭代器 = 可迭代的.iter()

range(10)
range(1,11)
print('__next__' in dir(range(1,11,2)))

dir 查看一个变量拥有的方法
print(dir([]))
print(dir(1))

help
help(str)

变量

print(callable(print))
a = 1
print(callable(a))
print(callable(globals))
def func():pass
print(callable(func))

import time

t = __import__('time')
print(t.time())

某个方法属于某个数据类型的变量,就用.调用
如果某个方法不依赖于任何数据类型,就直接调用 —— 内置函数 和 自定义函数

f = open('1.复习.py')
print(f.writable())
print(f.readable())

#id
hash - 对于相同可hash数据的hash值在一次程序的执行过程中总是不变的

- 字典的寻址方式
print(hash(12345))
print(hash('hsgda不想你走,nklgkds'))
print(hash(('1','aaa')))
print(hash([]))

input

ret = input('提示 : ')
print(ret)
print('我们的祖国是花园',end='')  #指定输出的结束符
print('我们的祖国是花园',end='')
print(1,2,3,4,5,sep='|') #指定输出多个值之间的分隔符
f = open('file','w')
print('aaaa',file=f)
f.close()
import time
for i in range(0,101,2):
		time.sleep(0.1)
char_num = i//2
per_str = '\r%s%% : %s\n' % (i, '*' * char_num) \
if i == 100 else '\r%s%% : %s' % (i,'*'*char_num)
print(per_str,end='', flush=True)
progress Bar

复数 —— complex
实数 : 有理数
无理数
虚数 :虚无缥缈的数
5 + 12j === 复合的数 === 复数
6 + 15j

浮点数(有限循环小数,无限循环小数) != 小数 :有限循环小数,无限循环小数,无限不循环小数
浮点数

 354.123 = 3.54123*10**2 = 35.4123 * 10
 f = 1.781326913750135970
print(f)
#进制转换函数:bin()→二进制;oct()→八进制;hex()→十六进制。
print(bin(10))
print(oct(10))
print(hex(10))
print(abs(-5))
print(abs(5))
divmod(,):除法取余。
print(divmod(7,2))   # div出发 mod取余
print(divmod(9,5))   # 除余
pow(a,b,c):幂运算
print(round(3.14159,3))
print(pow(2,3))   #pow幂运算  == 2**3
print(pow(3,2))
print(pow(2,3,3)) #幂运算之后再取余
print(pow(3,2,1))
ret = sum([1,2,3,4,5,6])
print(ret)

ret = sum([1,2,3,4,5,6,10],)
print(ret)
print(min([1,2,3,4]))
print(min(1,2,3,4))
print(min(1,2,3,-4))
print(min(1,2,3,-4,key = abs))
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值