摘要:
for example:test = """hello,\nworld"""print "this is test1: %s" %testprint "this is test2: %r" %test输出: this is test1: hello, world this is test2: 'hello,\nworld'由此可见,在python中格式化字符%r,表示打印的是对象,什么都打印 阅读全文
摘要:
The book is very simple: 52 exercises in all 26 cover just input/output, variables, and functions 26 cover logic (boolean algebra, if-statements, while-loops, etc.) 全书共52个练习 前26个关于输入/输出,变量和函数 后26个关于逻辑(布尔代数,if语句,while循环等) 总结或理解: 1.这是一本python入门书籍。 2.虽然作者号称学习这本书不需要一点点编程经验,但我觉得有一点还是好的,比如我的那点点... 阅读全文