Python学习笔记(三)—数据类型和变量

2017-10-12  本文已影响40人  Shawpoo的

转载请注明出处:http://www.jianshu.com/p/29af175dc94f
本文出自Shawpoo的简书
我的博客:CSDN博客

【Python学习笔记专栏】:http://blog.csdn.net/column/details/17658.html

一、Python的数据类型

在Python中,能够直接处理的数据类型有以下几种:

二、Python的运算符

名称 含义 举例 结果
+ 22 + 1 23
- 14.0 - 1 13.0
* 200 * 2 400
/ 1 / 2 0.5
// 整除 2 / 3 1
** 次方 3 * 3 27
% 求余 20 % 3 2

更多Python的运算符,参考我的另一篇文章:Python的运算符

三、Python的关键字和变量

Python包含32个关键字,可以在交互式环境中通过help函数进行查看:

>>> help("keywords")
False def if raise None
del import return True elif
in try and else is
while as except lambda with
assert finally nonlocal yield break
for not class from or
continue global pass
num = 66                 # 变量num是个整数
str = "hello python"     # 变量str是字符串
isOpen = True            # 变量isOpen是个布尔值
c_money = 32.68          # 变量c_money是个小数

ps:个人觉得,变量名命名的时候最好“见名知意”,而且可以遵循以下Java命名规范中的“驼峰式”命名法。

常量就是不能变的变量,是一种特殊的常量。比如常用的数学常数π就是一个常量。在Python中,通常用全部大写的变量名表示常量:

PI = 3.1415926535

常量的值也可以改变,只不过在开发中为了表示一个固定不变的值,所以不会去修改这个常量的值。

上一篇 下一篇

猜你喜欢

热点阅读