笨方法学Python 习题1

#  -*- coding: utf-8 -*-
print("Hello world!")    # Hello world! 这里使用了 Python3.0+的语法. 
print("Hello again!")
print("I like typing this.")
print('Yay! Printing.')
print("I'd much rather you 'not'.") #双引号里面使用了单引号
print('I "said" do not touch this.') #单引号里面使用双引号

猜你喜欢

转载自blog.csdn.net/weixin_43254423/article/details/82801005