如何进行循环?

时间:2018-12-06 22:21:12

标签: python loops

我将如何循环播放?

    def start():

     print('welcome to reduce that fraction')

     n=int(input("please enter numerator"))
     m=int(input("please enter denominator"))
     r=2
     while (n%r!=0):
      for y in range(2,10,1):
       a=n%r 
       r=r+1

    while (m%r!=0):
     for x in range(2,10):
      b=m%r
      r=r+1

   print(n/r,"/",m/r)
   print("Goodbye")
  start()

我一直在坚持如何将其循环回到开头。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我假设您希望函数“ start()”在完成后重新运行。在这种情况下,这就是我要做的:

while True:
    start()

这是一个始终存在的布尔while循环(Python隐式地将“ while True”解析为“ while True == True”),因此该函数将继续循环。