首页 \ 问答 \ 简述UPS的工作原理

简述UPS的工作原理

UPS的工作原理
更新时间:2022-05-02 22:05

最满意答案

解决方案如下:
1. 题目中是想把猜的次数设置为6次,Range(1,7),刚好是六次,这个已经满足要求;
2. 跳出循环的问题,一般都是用break,如果要求不用,代码修改如下;

import random
print("I am thinking of a number 1 to 20.You get 6 guesses")
theNumber = random.randint(1,20)
flag=True
for number in range(1,7):
    if flag:
        guess = int(input("Guess?"))
        if guess < theNumber:
            print(number, "too small")
        else:
            if guess > theNumber:
                print(number,"too big")
            else:
                print("correct")
                flag=False

if guess == theNumber:
    print("Well done")
else:
    print("Correct answer was", theNumber)

其他回答

1.开门见山直接回答知识点
2.对相关知识点进行延伸
3.规范排版,内容充实更容易通过认证哦
4.补充参考资料(没有可以忽略哦~)
print correct下面写个break就直接跳出外面的循环了
尽然你知道break是跳出一个小的循环那你应该也知道continue是结束当前执行的最大的循环,所以你可以把你想跳出的一些小的循环放在一个大的循环中然后使用continue 或者你可以把这些小的循环放在一个大的while循环语句中,然后自己在设置一下while里面的控制条件以及需要重新设置一个变量来进行控制
修改for那行,也就是地4行,改成下面两行:
number, guess = 1, -1
while number < 7 and guess != theNumber:
在循环最后,和if-else同等缩进处加下面一行:
number += 1  
一定注意缩进
这样就ok了,没有break;
quit()。。。。。

相关问答

更多
  • python中的break语句用法,常用在满足某个条件,需要立刻退出当前循环时(跳出循环),break语句可以用在for循环和while循环语句中。简单的说,break语句是会立即退出循环,在其后边的循环代码不会被执行。 break语句的用法 >>>x = 1 >>>while True: >>> x+=1 >>> print x 假设while条件为真,则执行代码块会被执行。因为条件永远是真,程序就会一直被执行下行,进入死循环,直到你的电脑崩溃。那么怎么解决这个问题呢?python 跳出循环!这个时候就要 ...
  • 解决方案如下: 1. 题目中是想把猜的次数设置为6次,Range(1,7),刚好是六次,这个已经满足要求; 2. 跳出循环的问题,一般都是用break,如果要求不用,代码修改如下; import random print("I am thinking of a number 1 to 20.You get 6 guesses") theNumber = random.randint(1,20) flag=True for number in range(1,7): if flag: guess = int( ...
  • 解决方案如下: 题目中是想把猜的次数设置为6次,Range(1,7),刚好是六次,这个已经满足要求; 跳出循环的问题,一般都是用break,如果要求不用,代码修改如下; import random print("I am thinking of a number 1 to 20.You get 6 guesses") theNumber = random.randint(1,20) flag=True for number in range(1,7): if flag: guess = int(input( ...
  • 里的break跳出的仅仅是switch语句,跳不出循环。
  • for(k=0;k
  • 用break,表示跳出当前循环。比如 if (r == 0) break; else .....;
  • C语言跳出循环[2022-05-24]

    方法是有的,不用goto 如果你想退出整个循环应该有个条件吧,这里拿x==1时退出整个循环,用flag记录状态 方法如下 while(condition){ ........... while(condition){ ........... if(x==1) {flag=1;//当达到这个条件时退出整个循环 break;//跳出第一重循环 } } if(flag==1) break;//跳出第二重循环 } 不过好像比较罗嗦哦,楼主可以考虑考虑
  • break语句
  • 我建议你不要杀死父进程的解决方案,而是使用退出代码。 shell脚本: #!/bin/sh while python3 my_py_script.py; do :; done python脚本: if ..something..: sys.exit('python script ends with errorcode 1') python脚本的默认退出代码是0.因此当它最后退出时,shell循环将再次运行。 当它以sys.exit('python script ends with errorcod ...
  • 为什么不添加在成功尝试结束时更改的bool? # Function for logging in and get a valid token def getToken(): gotToken = False while not gotToken: # Loop the cycle of logging in until valid token is received try: varUsername = raw_input("Enter your us ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)