count = 99
for n in range(1, 100):
if n % 7 == 0 or str(n).endswith("7"):
continue
count = count - 1
print("计算员工一共拍腿{}次".format(count))
#第二种方法
count = 0
for n in range(1, 100):
if n % 7 == 0 or str(n).endswith("7"):
count = count + 1
print("计算员工一共拍腿{}次".format(count))
相关文章
- 09-24break;continue和exit的区别
- 09-24循环中continue和break的区别
- 09-24continue、break、和 return 的区别是什么?
- 09-24return 、break和continue的区别和作用
- 09-24return 、break和continue的区别和作用
- 09-24shell中定义变量用双引号和单引号以及不用引号的区别
- 09-24day5 continue 和 break的区别
- 09-24编写程序-用continue和不用continue的区别
- 09-24Intern Day82 - C - new和反射区别/不用new用反射的好处
- 09-24循环结构中break、continue、return和exit的区别