码迷,mamicode.com
首页 > 其他好文 > 详细

111

时间:2018-02-04 00:34:27      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:内建类型   containe   bsp   number   序列   字符   alt   color   xxx   

模块导入是大大简化你的程序的可读性。

比如 1.py

1
2
3
4
5
#!/usr/bin/env python
#_*_coding:utf-8_*_
 
import 2.py
print("hello")

而2.py

1
2
3
4
#!/usr/bin/env python
#_*_coding:utf-8_*_
 
print("world")

而执行python 1.py结果是

world

hello

大家看到了吧,import xxx.py 就是将这个文件的内容导入进来替换这个import行。

数据类型

按照特征划分

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
数字类型:
  整形:
     布尔型:True  False  必须大写第一个字母
     长整形:
     标准整形:
   
  非整型:
     双精度浮点型
     复数
     decimal(不是内建类型)
   
  序列类型:
     字符串:引号引起来的
     元祖:tuple 不可变
     列表:
   
  键值:
     字典:
   
  集合类型:
     可变集合
     不可变集合

按照可变性划分:

111

标签:内建类型   containe   bsp   number   序列   字符   alt   color   xxx   

原文地址:https://www.cnblogs.com/Mryang123/p/8411096.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!