1.使用for循环打印9*9乘法表
python
for i in range(1, 10):
for j in range(1, i+1):
print(i, "*", j, "=", i*j, end="\t")
print()
结果:
2.使用while循环打印9*9乘法表
python
i = 1
while i < 10:
j = 1
while j < i+1:
print(i, "*", j, "=", i*j, end="\t")
j += 1
i += 1
print()
结果:
3.选做:使用while单层循环打印9*9乘法表
python
i = 1
j = 1
while i < 10:
if j > i:
print()
i += 1
j = 1
continue
else:
print(i, "*", j, "=", i * j, end="\t")
j += 1
结果:
4.定义函数:
定义一个函数:函数的位置参数以及关键字参数的个数不确定
python
def first_function(*args, **kwargs):
return 0
定义一个函数:函数的前三个参数必须以位置参数形式参数传递,后边两个参数必须以关键字形式进行传递
python
def second_function(i, j, k, /, *, m, n):
return 0