pyhton内置函数

发布时间 2023-03-22 21:13:19作者: duuuu

内置函数

1、type(变量名)--》查看变量的数据类型

2、print(self, *args, sep=' ', end='\n', file=None)

sep:指定多个参数以什么隔开
end:指定以什么结尾
print('hello', 'word', sep='&', end='***********')  # hello&word***********