9月 152020
a = 100
A = 200
print(a)
print(A)
#对变量赋值同时打印变量值
#python语言对大小写敏感,因此变量a和A时两个不同的变量
PS C:\Users\harveymei> & C:/Users/harveymei/AppData/Local/Programs/Python/Python38/python.exe c:/Users/harveymei/hello.py
100
200
PS C:\Users\harveymei>