2018年2月13日

(自兴人工智能) 玩转 python 字符串

摘要: # -*- coding: utf-8 -*-#字符串的声明可以单引号,双引号,三引号str1 = 'hello'print str1#结果:hellostr2 = "my"print str2#结果:mystr3 = '''python'''print str3#结果:python#python三 阅读全文

posted @ 2018-02-13 14:18 听风的夜 阅读(141) 评论(0) 推荐(0) 编辑

导航