《Python基础教程》第1章读书笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《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 rC:\nowhere
print rC:\Program Files\fnord\foo\bar\baz\frozz\bozz

print rLet\‘s go!
print Let\‘s go!

#原始字符串最后一个字符不能是反斜线
#print r"This is illegal\"
#要想在输出字符串末尾加反斜线,可以再接一个单独的字符串来处理
print r"This is illegal"‘\\

#Unicode字符串
print u
print uHello world!

 

以上是关于《Python基础教程》第1章读书笔记的主要内容,如果未能解决你的问题,请参考以下文章

《python基础教程》第2章列表和元组 读书笔记

《python基础教程》第5章 条件循环和其他语句 读书笔记

《python基础教程》第4章字典:当索引不好用时 读书笔记

读书笔记--《Python基础教程第二版》--第2章列表和元组

读书笔记--《Python基础教程第二版》--第十章 充电时刻

读书笔记--《Python基础教程第二版》--第十一章 文件和素材