大爽Python入门公开课教案 点击查看教程总目录 1 布尔值介绍 从判断说起 回顾第一章介绍的简单的判断 >>> x = 10 >>> if x > 5: ... print("x is greater than 5") 重点来看下if x > 5:这一句. 这一句可以分为两步 x > 5: 本质是一个运算式,其值是一个布尔值. if根据布尔值来判断. 具体如下 >>> x = 10 >>> x…
目标 想要获取一个整形数字的二进制表示 bin 内置函数 看一下官方的解释 Convert an integer number to a binary string prefixed with "0b". The result is a valid Python expression. If x is not a Python int object, it has to define an index() method that returns an integer. Some exa…
逻辑运算符 not and or 运算符优先级 not > and >or printer(x or y) x为非零,则返回x,否则返回y print(1 or 2) print(3 or 2) print(0 or 1) print(0 or 3) #打印结果1313 printer(x and y) x为非零,则返回y,x为零,则返回x print(1 and 2) print(0 and 2) print(2 and 3) #运行结果 2 0 3 数字转换布尔值 print(bool…
数字 写在最前,必须要会的:int() 整型 Python3里无论数字多长都用int表示,Python2里有int和Long表示,Long表示长整型 有关数字的常用方法,方法调用后面都必须带括号() int():将字符串转换为整型,且字符串内容只能是数字 a = " b = "123a" c = int(a) d = int(b) # ValueError: invalid literal for int() with base 10: '123a' print(type(c…