《Learn Python the Hard Way》习题集1

2022/2/11 14:13:18

本文主要是介绍《Learn Python the Hard Way》习题集1,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

练习语句:

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.'

输出结果:

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

题目:
1.让你的脚本多打印一行;
2.让你的脚本只打印一行; 

3.在某行的起始位置放一个#(#)符号。

它的作用是什么?自己研究一下。

答案:

1、让你的脚本多打印一行:输出语句末尾增加”\n“

print "Hello World!\n"
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.'

输出结果:

Hello World!

Hello Again
I like typing this.
This is fun.
Yay! Printing.
I'd much rather you 'not'.
I "said" do not touch this.

2、让你的脚本只打印一行:输出语句尾部增加“,”

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.'

输出:Hello World! Hello Again I like typing this. This is fun. Yay! Printing. I'd much rather you 'not'. I "said" do not touch this.

3、在某行的起始位置放一个#(#)符号它的作用是什么?自己研究一下。
#号作用为注释作用,注释的语句不再输出

#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.'

输出结果:

Hello Again
I like typing this.
This is fun.
Yay! Printing.
I'd much rather you 'not'.
I "said" do not touch this.



这篇关于《Learn Python the Hard Way》习题集1的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程