【笨办法学Python3】习题1 第一个程序

Windows部分

Linux部分:

学习小结:

1、5-7行说明单引号与双引号好像并没有区别,成对使用即可。

2、不需要每行后加换行符,自动换行。

3、巩固练习2书中翻译应该是错误的,不是“让你的脚本只打印其中一行”而意思应该是“用一行打印出来”,就是不要让它自动换行。书中“其中”二字意思明显就不对了,搜索解决方法过程中才发现大概率是我按书中意思理解错误了。

4、记住前言中所说“ 不要复制粘贴 ”,认真一字一字的打出来,我三个环境打了三遍希望效果更好,分析过程主要还是在虚拟机Windows中进行的,Atom用着确实挺舒服的。

5、Windows中和Linux中有些许区别,最后一行如果加end=‘ ’,Linux中不会换行,Windows结束后会换行,不过这里最后一行实在没必要加了。

视频地址:

Windows:http://ewm.ptpress.com.cn:8085/preview?qrCode=qr2018003608&verified=true

Linux:http://ewm.ptpress.com.cn:8085/preview?qrCode=qr2018003609&verified=true

macOS: http://ewm.ptpress.com.cn:8085/preview?qrCode=qr2018003605&verified=true

print("Hello World!")
#print("Hello Again")
print("I like typing this.")
print("This is fun.")
print('Yay! Printing.')
print("I'd much rather you 'not'.")
print('I "said" do not touch this.\n')

print("巩固练习:")
# 巩固练习1,让你的脚本再打印一行。
print("1、第7行.后加一个换行符或者第8行加“print()”即可多打印一个空行。")
# 巩固练习2,让你的脚本只打印其中某一行。
print("2、难道用“#”把其他行注释掉?肯定不是。“如果做不出来可以暂时跳过”")
# 巩固练习3,在一行的起始位置放置一个"#"字符。它的作用是什么,自己研究一下。
print("3、很显然是“注释”掉此行的作用。")

print("\n学习小结:")
print("1、5-7行说明单引号与双引号好像并没有区别,成对使用即可。\n2、不需\
要每行后加换行符,自动换行。\n3、巩固练习2书中翻译应该是错误的,不是其中\
一行而是用一行打印出来,就是不要让它自动换行。\n")

print("Hello World!", end = ' ')
print("Hello Again", end = ' ')
print("I like typing this.", end = ' ')
print("This is fun.", end = ' ')
print("Yay! Printing.", end = ' ')
print("I'd much rather you 'not'.", end = ' ')
print("I 'said' do not touch this.", end = ' ')

评论

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注