(从入门到入土w(゚Д゚)w)
#print("hello,world")
'''
print("hello,world")
print("how are you")
'''
"""
print("hello,world")
print("how are you")
"""
三个单引号和三个双引号的注释是一样的效果
import time
即模块的调用,类似C语言中的include语句
函数定义规则:
1、函数代码以def开头,后接标识符名称和():
2、传入参数必须放置于()内
3、return后不加内容时即返回值为0
def printstr(str):
print str
return
printstr("调用上式定义的函数>▽<")
输出结果为:调用上式定义的函数>▽<
调用其他模块的函数时要先使用import
语句先调用模块,然后再使用test.printstr()
来达到模块中函数的调用效果
fo in是循环结构中的一种,格式为for x in y:
y(y为字符串、列表等)表示为x依次表示为y中的每一个元素,直到遍历完所有的元素循环结束。