python入门学习之变量篇
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门学习之变量篇相关的知识,希望对你有一定的参考价值。
【前言】
在公司内部wiki上看到一个不错的学习网站,遂开始了我这慢悠悠的学习之旅。
网站链接:https://www.codecademy.com
1.理解布尔值
一种数据类型。
简单来说,正如你家里的电灯有开关两种状态一样,布尔值
同样也有两个值,即为True和False。
你可以使用变量来存储布尔数据。
a = True b = False
2.实战
以下为网站给出的任务:
Set the following variables to the corresponding values: my_int to the value 7 my_float to the value 1.23 my_bool to the value True
完成如下:
# Set the variables to the values listed in the instructions! my_int = 7 my_float = 1.23 my_bool = True print ‘The three variables are as follows ‘,my_int,my_float,my_bool
输出结果:
3.总结
1)变量前后都要保持一个空格。
2)变量名之间用下划线_隔开,当然也可以使用驼峰式(VarName)。
3)True与False的第一个字母要大写。
BTW,这种学习风格有点像打游戏冲关式的,让人沉迷于其中。
以上是关于python入门学习之变量篇的主要内容,如果未能解决你的问题,请参考以下文章