Python学习笔记(二)
一、变量声明及类型
Python变量特点:弱类型,即给变量赋什么值,变量就是什么类型。
# 这是段注释
money = 9
print(money, "元\t", type(money)) #type()显示变量类型
money = 9.9
print(money, "元\t", type(money))
money = "9.9元\t"
print(money, type(money))
二、变量的命名规则
1、由字母、数字、下划线_组成,不能以数字开头
2、严格区分大小写
3、不能使用python预留关键字
Python语言的标识符必须以字母,下划线(_)开头,后面可以跟任意数目的字母、数字和下划线(_)。此处的字母并不局限于26个英文字母,也可以包含中文字符、日文字符等。
由于Python3支持UTF-8字符集,因此Python3的标识符可以使用UTF-8所能表示的多种语言字符。
Python语言是区分大小写的,因此abc和Abc是两个不同的标识符。
Python2.x对中文支持较差,如果要在Python2.x程序中使用中文字符或中文变量,则需要在Python源程序的第一行增加“#coding:utf-8”,当然别忘了将源文件保存为UTF-8字符集。
name01 = "张三"
print(name01)
name_02 = "李四"
print(name_02)
_name03 = "王五"
print(_name03)
查看python有哪些关键字:
C:\Users\Eheng>python 进入python
>>> import keyword 导入包
>>> print(keyword.kwlist) 打印关键字,如下
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class',
'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global',
'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise',
'return', 'try', 'while', 'with', 'yield']
- 点赞
- 收藏
- 关注作者
评论(0)