欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python 变量

程序员文章站 2023-11-09 21:33:04
一、变量的命名格式 1.变量只能由字母、数字、下划线组成(不能使用数字开头) 2.变量不能包含特殊字符 3.变量不能使用python关键字:['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'els ......

一、变量的命名格式

1.变量只能由字母、数字、下划线组成(不能使用数字开头)

2.变量不能包含特殊字符

3.变量不能使用python关键字:['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']

二、变量的声明

#_*_coding:utf-8_*_
 
name = "eric"

print("value:",name)

声明了一个name变量,并且赋值(字符串类型)

三、变量的赋值

name = "eric"
 
name1 = name
 
name = "is ok"

print("what is the value of name1 now?")

print(name,name1)

变量可以相互赋值,但是name的重新赋值并不会改变name1的值,除非再次对name1进行赋值才会改变他的值