摘要: ​ 在Python中字符串的表达方式有四种 一对单引号 一对双引号 一对三个单引号 一对三个双引号 a = 'abc' b= "abc" c = '''abc''' d = """abc""" print(type(a)) # <class 'str'> print(type(b)) # <clas 阅读全文
posted @ 2020-10-07 16:58 python阿喵 阅读(516) 评论(0) 推荐(0) 编辑