Python 简明教程
Python - Literals
What are Python Literals?
Python 字面量或常量是表示源代码中的固定值的符号。与 variables 相反,字面量(123、4.3、“您好”)是静态值,您也可以说它们是常量,在整个程序或应用程序的操作过程中不会发生变化。例如,在以下分配语句中。
x = 10
此处,10 是一个字面量,表示数值 10,它被直接存储在内存中。然而,
y = x*2
在此处,即使表达式结果为 20,但它也不会被明确包括在源代码中。您还可以使用内置的 int() 函数来声明一个 int 对象。但是,这也是一种间接的实例化方式,而不是字面量方式。
x = int(10)
Python Integer Literal
只包含数字符号(0 到 9)的任何表示都创建了一个 int 类型的对象。这样声明的对象可以使用赋值运算符来引用变量。
整数文字包含三种不同类型的文字值:十进制、八进制和十六进制文字。
2. Octal Literal
Python 允许将整数表示为八进制数或十六进制数。在 Python 中,前缀为 0o 或 0O 的仅包含八个数字符号(0 到 7)的数字表示是八进制数。
请看下面的语句,它将八进制字面量赋值给变量 −
x = 0O34
Python Float Literal
浮点数由整数部分和小数部分组成。按照惯例,小数点符号(.)在浮点数的字面量表示中分隔这两个部分。例如,
Example of Float Literal
x = 25.55
y = 0.05
z = -12.2345
对于一位数在小数点前或后的浮点数,如果位数过多,会使用科学计数法进行紧凑的字面量表示。在整数部分之后加上正整数或负整数的符号 E 或 e。
Example of Float Scientific Notation Literal
例如,数字 1.23E05 等于 123000.00。同样,1.23e-2 等于 0.0123
# Using normal floating point notation
x = 1.23
print ("1.23 in normal float literal is", x, type(x))
# Using Scientific notation
x = 1.23E5
print ("1.23E5 in scientific notation is", x, type(x))
x = 1.23E-2
print ("1.23E-2 in scientific notation is", x, type(x))
在这里,你会得到以下 output −
1.23 in normal float literal is 1.23 <class 'float'>
1.23E5 in scientific notation is 123000.0 <class 'float''>
1.23E-2 in scientific notation is 0.0123 <class 'float''>
Python Complex Literal
复数包含实数和虚数部分。虚数部分是任何数字(整数或浮点数)乘以“-1”的平方根
(√ −1)。在字面量表示中,($\sqrt{−1}$) 表示为“j”或“J”。因此,复数的字面量表示采用形式 x+yj。
Example of Complex Type Literal
#Using literal notation of complex number
x = 2+3j
print ("2+3j complex literal is", x, type(x))
y = 2.5+4.6j
print ("2.5+4.6j complex literal is", x, type(x))
该代码将会生成以下 output −
2+3j complex literal is (2+3j) <class 'complex'>
2.5+4.6j complex literal is (2+3j) <class 'complex'>
Python String Literal
一个 string 对象是序列 data types in Python 之一。它是一个 Unicode 代码点的不可变序列。代码点是根据 Unicode 标准对应于字符的数字。字符串是 Python 的内置类“str”的对象。
字符串字面量通过将字符序列括在单引号('hello')、双引号("hello")或三引号('''hello''' 或 """hello""")中写成。
Example of String Literal
var1='hello'
print ("'hello' in single quotes is:", var1, type(var1))
var2="hello"
print ('"hello" in double quotes is:', var1, type(var1))
var3='''hello'''
print ("''''hello'''' in triple quotes is:", var1, type(var1))
var4="""hello"""
print ('"""hello""" in triple quotes is:', var1, type(var1))
在这里,你会得到以下 output −
'hello' in single quotes is: hello <class 'str'>
"hello" in double quotes is: hello <class 'str'>
''''hello'''' in triple quotes is: hello <class 'str'>
"""hello""" in triple quotes is: hello <class 'str'>
Example of String Literal With Double Quoted Inside String
如果需要将双引号作为字符串的一部分嵌入,则应将字符串本身放到单引号中。另一方面,如果要嵌入单引号文本,则应使用双引号编写字符串。
var1='Welcome to "Python Tutorial" from TutorialsPoint'
print (var1)
var2="Welcome to 'Python Tutorial' from TutorialsPoint"
print (var2)
它将生成以下 output −
Welcome to "Python Tutorial" from TutorialsPoint
Welcome to 'Python Tutorial' from TutorialsPoint
Python List Literal
List 对象是一种其他数据类型对象的集合。列表是有序的对象的集合,它们不必是同一种类型。可以通过从 0 开始的索引访问集合中的各个对象。
列表对象的文本表示形式通过一个或多个逗号分隔、并用方括号 [] 括起来的对象来表示。
Python Tuple Literal
Tuple 对象是一种其他数据类型对象的集合。元组是有序的对象的集合,它们不必是同一种类型。可以通过从 0 开始的索引访问集合中的各个对象。
元组对象的文本表示形式通过一个或多个逗号分隔、并用括号 () 括起来的对象来表示。
Python Dictionary Literal
像列表或元组一样, dictionary 也是一个集合数据类型。但是,它不是一个序列。它是一个无序的项集合,每个项都是一个键值对。值通过冒号 “:” 符号绑定到键。一个或多个用逗号分隔的键值对放在大括号中,以形成一个字典对象。
Example of Dictionary Type Literal
capitals={"USA":"New York", "France":"Paris", "Japan":"Tokyo",
"India":"New Delhi"}
numbers={1:"one", 2:"Two", 3:"three",4:"four"}
points={"p1":(10,10), "p2":(20,20)}
print (capitals, type(capitals))
print (numbers, type(numbers))
print (points, type(points))
键应为一个不可变对象。数字、字符串或元组可以用作键。键在同一个集合中不可出现多次。如果某个键出现多次,则只有最后一个会被保留。值可以是任何数据类型。一个值可以分配给多个键。例如:
staff={"Krishna":"Officer", "Rajesh":"Manager", "Ragini":"officer", "Anil":"Clerk", "Kavita":"Manager"}