用python程序实现逢七拍手游戏

编写代码,模拟实现逢七拍手游戏,实现输出100以内需要拍手的数字的程序。
内置函数str(obj)的使用,作用为将obj转化成字符串形式

# 1.逢七拍手游戏,用for循环
for i in range(1, 101):
    if i % 7 == 0 or '7' in str(i):
        print('*', '', end='')
    else:
        print(i, '', end='')
    if i % 10 == 0:
            print('\r')

用python程序实现逢七拍手游戏_第1张图片

你可能感兴趣的:(python,python)