我定义a=‘hello’
print('a')
为什么出来不是hello
print('a') // 这里传入的参数就不是a,而是字符串a,因此打印了字符串a
a 加引号不是要输出的变量了 ,变成字符串a了