python什么时候需要加引号_Python篇(一) 引号的作用及其区别
这里主要记录一下在 python 中使用单引号, 双引号 和三引号的区别.当前开发环境Python 3.5.2GitHub单引号# import !/user/bin/env python# -*- coding:UTF-8 -*-string1 = 'hello world1'print(string1)运行结果hello world1双引号# import !/user/bin/env pyt...