统计软件与数据分析Lesson7----字符串相关操作
利用单引号或双引号创建字符串
# Exercise 1
print('hello')
hello
字符串不加引号会识别为变量,如果变量在此之前未定义会报错
# Exercise 2
print(hello)
---------------------------------------------------------------------------
NameError
利用单引号或双引号创建字符串
# Exercise 1
print('hello')
hello
字符串不加引号会识别为变量,如果变量在此之前未定义会报错
# Exercise 2
print(hello)
---------------------------------------------------------------------------
NameError