📅  最后修改于: 2020-10-28 01:55:19             🧑  作者: Mango
Python是一种动态类型的语言,这意味着我们无需在使用变量类型之前就进行声明或声明。它使Python成为最有效和易于使用的语言。在Python,每个变量都被视为一个对象。
在声明变量之前,我们必须遵循给定的规则。
让我们了解一些基本变量的声明。
Python支持三种类型的数字-整数,浮点数和复数。我们可以声明任何长度的变量,没有限制地声明变量的任何长度。使用以下语法声明数字类型变量。
范例-
num = 25
print("The type of a", type(num))
print(num)
float_num = 12.50
print("The type of b", type(float_num))
print(float_num)
c = 2 + 5j
print("The type of c", type(c))
print("c is a complex number", isinstance(1 + 3j, complex))
输出:
The type of a
25
The type of b
12.5
The type of c
c is a complex number True
字符串是Unicode字符的序列。它使用单引号,双引号或三引号声明。让我们了解以下示例。
范例-
str_var = 'JavaTpoint'
print(str_var)
print(type(str_var))
str_var1 = "JavaTpoint"
print(str_var1)
print(type(str_var1))
str_var3 = '''This is string
using the triple
Quotes'''
print(str_var3)
print(type(str_var1))
输出:
JavaTpoint
JavaTpoint
This is string
using the triple
Quotes
1.将多个值分配给多个变量
我们可以在同一行上同时分配多个变量。例如 –
a, b = 5, 4
print(a,b)
输出:
5 4
值按给定顺序打印。
2.为多个变量分配一个值
我们可以将单个值分配给同一行上的多个变量。考虑以下示例。
范例-
a=b=c="JavaTpoint"
print(a)
print(b)
print(c)
输出:
JavaTpoint
JavaTpoint
JavaTpoint