首页 > 代码库 > 《Python基础教程》第1章读书笔记
《Python基础教程》第1章读书笔记
# -*- coding:utf-8 -*- x = "hello " y = "world" print x+y print "hello "+y #repr() eval() x = repr("hello") val = eval(x) print x print val print "hello" print str("hello world!") y = [1,2,3,4] print repr(y) print str(10000L) print repr(1000L) temp = 42 print "The temperature is "+repr(temp) #raw_input() name = raw_input("what is your name?") print "hello, " + name + "!" #长字符串、原始字符串和Unicode #长字符串 print ‘‘‘This is a very long string. It continues here. And it‘s not over yet. "Hello world!" Still here.‘‘‘ #反斜线使换行符转义 print "hello, world!" print 1+2+3 print "hello world" #换行符\n print ‘Hello \nworld!‘ #打印反斜线 print ‘C:\\nowhere‘ #打印路径---打印原始字符串 print "C:\\Program Files\\fnord\\foo\\bar\\baz\\frozz\\bozz" print r‘C:\nowhere‘ print r‘C:\Program Files\fnord\foo\bar\baz\frozz\bozz‘ print r‘Let\‘s go!‘ print ‘Let\‘s go!‘ #原始字符串最后一个字符不能是反斜线 #print r"This is illegal\" #要想在输出字符串末尾加反斜线,可以再接一个单独的字符串来处理 print r"This is illegal"‘\\‘ #Unicode字符串 print u‘张‘ print u‘Hello world!‘
《Python基础教程》第1章读书笔记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。