码迷,mamicode.com
首页 > 编程语言 > 详细

0-python变量及基本数据类型

时间:2019-12-09 18:59:05      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:布尔   三引号   字符   字母   基本   浮点数   包含   划线   lse   

目录

1、变量
2、字符串
3、布尔类型
4、整数
5、浮点数
6、日期

1、变量

1.1、变量的定义

- 类似于标签

1.2、变量的命名规则

- (强制)变量名只能包含数字、字母、下划线

- (强制)不能以数字开头

- (强制)不能使用保留字(函数名、常量名、关键字

- (建议)尽量简短而具有描述性

- (建议)驼峰原则<大驼峰-首字母大写><小驼峰-首字母小写>

- (建议)慎用小写的l和大写的O

1.3、变量的使用

- 输出:

a = 123

print(a)

>>123

- 运算:

a = 11

b = 22

print(a + b)

>>33

- 传参

a = 3.65

abs(a)

>>3


2、字符串
2.1、用单引号括起来表示字符串(单行字符串):

str = ‘this is str‘

print(str)

>>‘this is str‘

2.2、用双引号括起来表示字符串(与单引号相同):

str =‘‘this is str‘‘

print(str)

>>‘‘this is str‘‘

2.3、用三引号括起来表示字符串(多行字符串):

str = ‘‘‘this

is

str‘‘‘

print(str)

>>‘‘‘this

is

str‘‘‘

3、布尔类型

bool = True

print(bool)

>>True

bool = False

print(bool)

>>False

4、整数

a = 6

print(a)

>>6

- 转整数

a = ‘36‘

print(a)

>>‘36‘

b = int(a)

print(b)

>>36

5、浮点数

a = 3.33

print(a)

>>3.33

6、日期



0-python变量及基本数据类型

标签:布尔   三引号   字符   字母   基本   浮点数   包含   划线   lse   

原文地址:https://www.cnblogs.com/new-hashMap/p/12012695.html

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