今天是学习python的第一天,基本上是从0开始,学习的第一个测试如下;
在ex1.py文件中输入以下代码:
print("hello world!")
print("hello again")
print("I like type 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 type this.
this is fun.
Yay! printing.
I'd much rather you 'not'.
I "said" do not touch this