Windows部分:
Linux部分:
学习小结:
1、这部分很简单,按照要求抄写即可。了解反向查错,一般错误提示行往前找才是真正错误的地方。
2、练习完后才记起每个练习都有小视频,英语中字的,看看与自己操作有什么区别,也相当于练习了一遍英语。
3、朗读时发现#字符,英语朗读的是Number,比书中octothorpe、pound character简单,不知道具体区别,不过octothorpe写了几遍也好记了。
视频地址:
http://ewm.ptpress.com.cn:8085/preview?qrCode=qr2018003615&verified=true
# A comment, this is so you can read your program later.
# Anything after the # is ignored by python.
print("I could have code like this.") # and the comment after is ignored
# You can also use a comment to "disable" or comment out code:
# print("This won't run.")
print("This will run.")
print()
print("Study Drills(巩固练习):")
# 弄清楚#字符的作用,而且记住它的英文名字octothorpe / pound character
print("1、octothorpe单词不好记啊,分开读oc tothor pe,不明白记的意义,就\
当记英文单词了。\n2、从后往前逐行反向检查应该是有用的吧,目前还体会不到,也\
当学英语了。\n3、确实会发现一些错误,因为注释掉了所以没有报错。\n4、朗读代\
码也当学英语吧,越来越喜欢这个课程了,英语也一并学习了,一箭多雕。")
发表回复