wojkxlq 发表于 2018-8-10 13:18:36

Python第二周 学习笔记(1)

s1 = 'string'  s2 = "string2"
  s3 = '''this's a "String" '''
  s4 = 'hello \n magedu.com'
  s5 = r"hello \n magedu.com"
  s6 = 'c:\windows\nt'
  s7 = R"c:\windows\nt"
  s8 = 'c:\windows\\nt'
  sql = """select * from user where name='tom' """
页: [1]
查看完整版本: Python第二周 学习笔记(1)