人生苦短,我要学快乐Python!之 1.变量

初识Python变量

变量名:只能是字母、数据和下划线组成,但不能以数字开头。

关键字不能做变量,也不要和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'

n1 = '人生苦短'
n2 = '我要学Python'
print(n1)
print(n2)

代码中 n1和n2就是变量,print是输出n1,n2

猜你喜欢

转载自www.cnblogs.com/ntgale/p/12070212.html