使用pycharm查询1-30中数字19或者随机数字

1.普通查询

sum = 2
i = 0
for i in range(31):
    i = i+1
    sum = sum+1
    if sum == 19:
        print(sum)
        print(i)

其中第一个数值为19 第二个为找到19所用步长

2.随机查询 

import random
n=int(input("xiangqvna"))
z=int(input("wozaina"))
while True:
    b = random.randint(0, 1)
    if b==1:
        if z == 0 or z == 30:
            s = z
        else:
          s =z+1
    else:
        if z == 0 or z == 30:
            s = z
        else:
            s = z-1
    z = s

    print(z)
    if s==n:
        break
print('最终',s)

使用pycharm查询1-30中数字19或者随机数字_第1张图片

 使用pycharm查询1-30中数字19或者随机数字_第2张图片

 

你可能感兴趣的:(numpy,pycharm)