习题1 第一个程序
#!usr/bin/python
#--coding:utf-8--
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.
其他:
- 创建文件夹:mkdir
- 进入一个目录:cd
- 列出文件夹的内容:ls
- 打印空行:print ‘\n’*n;其中n代表行数
- 输出不换行:在末尾加,