Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试用 ruby 编写程序,该程序需要在返回文本之前暂停。 在 python 中,您可以通过导入时间然后使用 time.sleep(x) 来做到这一点。如何在 ruby 中做到这一点。
前任。在 Python 中 print ("you say hello") time.sleep(5) print ("I say goodbye")
print ("you say hello") time.sleep(5) print ("I say goodbye")
对于您的示例,只需使用
sleep(5)