我在Python中创建了以下2D数组(列表列表):
#creating a 2d array (3 rows by 7 columns) and populating it with numbersmatrix=[1,2,3,4,5,6,7],[8,9,10,11,12,13,14],[15,16,17,18,19,20,21]rows=len(matrix) #finding the max number of rows in the matrix, in this case 3columns=len(matrix[0]) #finding the max number of columns in each row, 7 in this case我试图在数组中搜索特定元素(例如编号9),然后打印“找到”(如果找到”,而“找不到”(如果不是在数组中),则使用以下代码:
number=int(input("What number are you looking for?"))for i in range(rows): for j in range(columns): if matrix[i][j]==number: print("Found it!") breakelse: print("not found")但是,输出是错误的:
>>What number are you looking for? 9>>Found it!>>not found我有两个问题:1。有人可以清楚地解释身份,参考此问题以及为什么第二个“找不到”总是输出的原因。 2.是否有更好的方法可以做到这一点,而无需使用numpy
*请注意,这不是重复的,因为我已经搜索了其他条目,而且他们并不完全处理我的明确要求。
repl.it在这里: https://repl.it/icj3/3
有人只是建议一个答案:(我已经尝试过)
https://repl.it/icj3/5 请注意,它也根本不起作用:
number=int(input("What number are you looking for?"))for i in range(rows): for j in range(columns): if matrix[i][j]==number: print("Found it!") break else: print("not found")错误的输出,仍然!
What number are you looking for? 9not foundnot foundnot foundnot foundnot foundnot foundnot foundnot foundFound it!not foundnot foundnot foundnot foundnot foundnot foundnot found这里的主要问题是 break 仅退出最内向的循环。因此,如果找到一个元素, break 将跳过同一列中的其他元素,但外循环仍将前进到下一行。您真正想要的是这样:
found = Falsefor row in matrix: for element in row: if element == number: found = True break if found: breakif found: print("Found")else: print("Not found")(注意另一个中断)或可能是使用功能更可读的解决方案:
def searchfor(matrix, number): for row in matrix: for element in row: if element == number: return True return Falseif searchfor(matrix, number): print("Found")else: print("Not found")编辑: 在我看来,可以在没有标志变量或功能的情况下编写它,但这并不是一种特别优雅的方式。不过,为了完整,您在这里:
for row in matrix: for element in row: if element == number: break else: continue breakif element == number: print("Found")else: print("Not found")这 continue 语句仅在内部循环时执行 不是 退出 break,它将将外循环推向下一行;否则第二 break 将结束外循环。
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
总的来说,我对ruby还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用
类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc
很好奇,就使用rubyonrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提
我正在尝试设置一个puppet节点,但rubygems似乎不正常。如果我通过它自己的二进制文件(/usr/lib/ruby/gems/1.8/gems/facter-1.5.8/bin/facter)在cli上运行facter,它工作正常,但如果我通过由rubygems(/usr/bin/facter)安装的二进制文件,它抛出:/usr/lib/ruby/1.8/facter/uptime.rb:11:undefinedmethod`get_uptime'forFacter::Util::Uptime:Module(NoMethodError)from/usr/lib/ruby
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
我有多个ActiveRecord子类Item的实例数组,我需要根据最早的事件循环打印。在这种情况下,我需要打印付款和维护日期,如下所示:ItemAmaintenancerequiredin5daysItemBpaymentrequiredin6daysItemApaymentrequiredin7daysItemBmaintenancerequiredin8days我目前有两个查询,用于查找maintenance和payment项目(非排他性查询),并输出如下内容:paymentrequiredin...maintenancerequiredin...有什么方法可以改善上述(丑陋的)代
大约一年前,我决定确保每个包含非唯一文本的Flash通知都将从模块中的方法中获取文本。我这样做的最初原因是为了避免一遍又一遍地输入相同的字符串。如果我想更改措辞,我可以在一个地方轻松完成,而且一遍又一遍地重复同一件事而出现拼写错误的可能性也会降低。我最终得到的是这样的:moduleMessagesdefformat_error_messages(errors)errors.map{|attribute,message|"Error:#{attribute.to_s.titleize}#{message}."}enddeferror_message_could_not_find(obje
我想了解Ruby方法methods()是如何工作的。我尝试使用“ruby方法”在Google上搜索,但这不是我需要的。我也看过ruby-doc.org,但我没有找到这种方法。你能详细解释一下它是如何工作的或者给我一个链接吗?更新我用methods()方法做了实验,得到了这样的结果:'labrat'代码classFirstdeffirst_instance_mymethodenddefself.first_class_mymethodendendclassSecond使用类#returnsavailablemethodslistforclassandancestorsputsSeco
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i