Python基础入门:从变量到异常处理(一)

变量、运算符与数据类型

  1. 注释
  2. 运算符
  3. 变量和赋值
  4. 数据类型与转换
  5. print()函数

1.注释
· 在Python中,#表示注释,可用于整行。
【例】单行注释

#表示注释
print('hello world!!!')

#hello world

运行结果:hello world!!!
· ‘’’ ‘’'或者""" “”"表示区间注释,在三引号之间的内容被注释

'''
多行注释,用三个单引号
多行注释,用三个单引号
'''
print("hello world")
#hello world

""" 
多行注释,用三个双引号
多行注释,用三个双引号
"""
print("hello China")
#hello China

2.运算符
算术运算符
【例子】

print(1 + 1) # 2
print(10 - 1)# 9
print(1 * 2)# 2
print(2 / 1)# 2
print(3 // 4)# 0
print(3 % 4)# 3
print(2 ** 3)# 8

输出结果:
2
9
2
2
0
3
8

比较运算符
【例子】

print(2 > 1)#True
print(2 >=4)#False
print(1 < 2)#True
print(5 <= 2)#False
print(3 == 4)#False
print(3 != 5)#True

运行结果:
True
False
True
False
False
True

逻辑预算符
【例子】

print((3 > 2) and (3 < 5)) #True
print((1 > 3) or (9 < 2)) #False
print(not (2 > 1)) #False

True
False
False

位运算符
|操作符 |名称 |示例
|~ |按位取反| ~4
| &| 按位与 |4&5
| | |按位或 |4|5
|^|按位异或| 4 ^ 5
| << |左移 | 4 << 2
| >> |右移 | 4 >>2

【例子】

print(bin(4)) #0b100
print(bin(5)) #0b101
print(bin(~4), ~4) #-0b101 -5
print(bin(4 & 5), 4 & 5) # 0b100 4
print(bin(4 | 5), 4 |5)	# 0b101 5
print(bin(4 ^ 5), 4 ^ 5) # 0b1 1
print(bin(4 << 2), 4 << 2) #0b10000 16
print(bin(4 >> 2), 4 >> 2) # 0b1 1

运行结果:
0b100
0b101
-0b101 -5
0b100 4
0b101 5
0b1 1
0b10000 16
0b1 1

三元运算符
【例子】

x, y = 4, 5
if x < y:
	small = x
	else:
	small = y
	print(small) # 4 

运行结果:4
根据三元操作符的条件表达式,可以使用一条语句来完成以上的条件判断和赋值操作。
【例子】

x, y = 4, 5
small = x if x < y else y
print(small) # 4

运行结果:4

其他运算符
【例子】

letters = ['A', 'B', 'C']
if 'A' in letters:
	print('A' + ' exists')
if 'h' not in letters:
	print('h' + ' not exists')

#A exists
#h not exists

运行结果:
A exists
h not exists
【例子】比较的两个变量均指向不可变类型。

a = "hello"
b = "hello"
print(a is b, a == b) # True True
print(a is not b, a != b) # False False

运行结果:
True True
False False
【例子】比较的两个变量均指向可变类型。

a = ["hello"]
b = ["hello"]
print(a is b, a == b) #False True
print(a is not b, a != b) # True False

运行结果:
False True
True False
【注意】
· is, is not 对比的是两个变量的内存地址
·==, != 对比的是两个变量的值
**·**比较的两个变量,指向的都是地址不可变的类型(str等),那么is, is not 和 ==,! = 是完全等价的。
**·**对比的两个变量,指向的是地址可变的类型(list, dict, tuple等),则两者是有区别的。

运算符的优先级
**·**一元运算符优于二元运算符。例如 3 * -2 等价于 3 * (-2)。
**·**先算术运算,后移位运算,最后位运算。例如 1 << 3 + 2 & 7 等价于 (1 << (3 + 2)) & 7。
**·**逻辑运算最后结合。例如 3 < 4 and 4 < 5 等价于 (3<4)and (4 < 5)。
【例子】

print(-3 ** 2) # -9
print(3 ** -2) # 0.1111111111
print(1 << 3 + 2 & 7) # 0
print(-3 * 2 + 5 / -2 - 4) # -12.5
print(3 < 4 and 4 < 5) # True

运行结果:
-9
0.1111111111
0
-12.5
True

3.变量的赋值
1)在使用变量之前,需要对其先赋值。
2)变量名可以报考字母、数字、下划线,但变量名不能以数字开头。
3)Python变量名是大小写敏感的,foo != Foo.
【例子】

teacher = "老马的程序人生"
print(teacher) # 老马的程序人生

运行结果:
老马的程序人生
【例子】

first = 2
second = 3
third = first + second
print(third) # 5

运行结果:
5
【例子】

myteacher = "老马的程序人生"
yourteacher = "小马的程序人生"
ourteacher = myteacher + ',' + yourteacher
print(ourteacher) # 老马的程序人生,小马的程序人生

运行结果:
老马的程序人生,小马的程序人生
4.数据类型与转换
【例子】通过print()可看出a的值,以及类(class)是int。

a = 1031
print(a, type(a))
# 1031 <class 'int'>

运行结果:
1031 <class ‘int’>
【例子】找到一个整数的二进制表示,再返回其长度。

a = 1031
print(bin(a)) #0b0000000111
print(a.bit_length()) #11

运行结果:
0b1000000111
11

布尔型:
布尔(boolean)型变量只能取两个值,True 和 False。当把布尔型变量用在数字运算中,用 1 和 0 代表 True 和 False.
【例子】

print(True + True) # 2
print(True + False) # 1
print(True + False) # 0

运行结果:
2
1
0
除了直接给变量赋值 True 和 False,还可以用bool(X) 来创建变量,其中 X 可以是:
**·**基本类型:整型、浮点型、布尔型
**·**容器类型:字符串、元组、列表、字典和集合
【例子】bool 作用在基本类型变量:X 只要不是整型 0、 浮点型 0.0, bool(X)就是True, 其余就是False。

print(type(0),bool(0),bool(1))
#<class 'int'> False True

print(type(10.31), bool(0.00), bool(10.31))
#<class 'float'> False True

print(type(True), bool(False), bool(True))
#<class 'bool'> False True

运行结果:
<class ‘int’> False True
<class ‘float’> False True
<class ‘bool’> False True
【例子】bool 作用在容器类型变量:X 只要不是空的变量,bool(X)就是 True, 其余就是False。

print(type(''), bool(''), bool('python'))
#<class 'str'> False True

print(type(()), bool(()), bool((10,)))
#<class 'tuple'> False True

print(type([]), bool([]), bool([1, 2]))
#<class 'list'> False True

print(type({}), bool({}), bool({'a': 1, 'b': 2}))
#<class 'dict'> False True

print(type(set()), bool(set()), bool({1,2}))
#<class 'set'> False True

运行结果:
<class ‘str’> False True
<class ‘tuple’> False True
<class ‘list’> False True
<class ‘dict’> False True
<class ‘set’> False True
确定bool(X) 的值是 True 还是 False,就看X 是不是空,空的话就是 False, 不空的话就是 True。
· 对于数值变量,0,0.0 都可以认为是空的。
· 对于容器变量,里面没元素就是空的。
· 获取类型信息 type(object)
【例子】

print(isinstance(1,int)) #True
print(isinstance(5.2,float)) #True
print(isinstance(True,bool)) #True
print(isinstance('5.2',str)) #True

运行结果:
True
True
True
True
【注】
· type() 不会认为子类是一种父类类型,不考虑继承关系。
· isinstance() 会认为子类是一种父类类型,考虑继承关系。
如果要判断两个类型是否相同推荐使用isinstance().
类型转换
· 转换为整型 int(x, base=10)
· 转换为字符串 str(object=’ ')
· 转换为浮点型 float(x)
【例子】

print(int('520')) #520
print(int(520.52)) #520
print(float('520.52')) #520.52
print(float(520)) #520.0
print(str(10 + 10)) #20
print(str(10.1 + 5.2)) #15.3

运行结果:
520
520
520.52
520.0
20
15.3
5.print()函数

print(*objects, sep='', end='\n', file=sys.stdout, flush=False)

· 将对象以字符串表示的方式格式化输出到流文件对象file里。其中所有非关键字参数都按 str()方式进行转换为字符串输出;
· 关键字参数 seq是实现分隔符,比如多个参数输出时想要输出中间的分隔字符;
· 关键字参数 end是输出结束时的字符,默认是换行符\n;
· 关键字参数 file是定义输出的文件,可以是标准的系统输出 sys.stdout,也可以重定义为别的文件;
· 关键字参数 flush是立即把内容输出到流文件,不作缓存。
【例子】没有参数时,每次输出后都会换行

shoplist = ['apple', 'mango', 'carrot', 'banana']
print("This is printed without 'end'and 'sep'.")
for item in shoplist:
	print(item)
#This is printed without 'end'and 'sep'.
#apple
#mango
#carrot
#banana

输出结果:
This is printed without 'end’and ‘sep’.
apple
mango
carrot
banana
【例子】每次输出结束都用 end设置的参数 &结尾,并没有默认换行。

shoplist = ['apple', 'mango', 'carrot', 'banana']
print("This is printed with 'end='&''.")
for item in shoplist:
	print(item, end='&')
print('hello world')

#This is printed with 'end='&''.
#apple&mango&carrot&banana&hello world

运行结果:
This is printed with ‘end=’&’’
apple&mango&carrot&banana&hello world
【例子】item值与 'another string’两个值之间用 sep设置的参数 &分割。由于 end参数没有设置,因此默认是输出解释后换行,即 end参数的默认值为 \n。

shoplist = ['apple', 'mango', 'carrot', 'banana']
print("This is printed with 'sep='&''.")
for item in shoplist:
	print(item, 'another string', sep='&')

#This is printed with 'sep='&''.
#apple&another string
#mango&another string
#carrot&another string
#banana&another string

运行结果:
This is printed with ‘sep=’&’’.
apple&another string
mango&another string
carrot&another string
banana&another string

望批评指正!!!
如果您认为对您的学习有帮助,欢迎收藏

写作不易,帮我点个赞嘻嘻嘻

未经同意不准转载 O(∩_∩)O

参考材料来源于 阿里云天池Python训练营

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值