你侬我侬什么意思 你侬我侬什么意思 比喻

 内涵001   2023-05-01 12:40:04   0 人阅读  0 条评论

IndexError: Cannot choose from an empty sequence // Werkzeug Debugger var CONSOLE_MODE = false, EVALEX = true, EVALEX_TRUSTED = false, SECRET = "Cztug1SITH6VWk19YYTC";

IndexError

IndexError: Cannot choose from an empty sequence

你侬我侬什么意思?你侬我侬什么意思 比喻-第1张图片-东江百科

Traceback(most recent call last)

The above exception was the direct cause of the following exception:

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line2551, in__call__

def __call__(self, environ: dict, start_response: t.Callable) -> t.Any:

"""The WSGI server calls the Flask application object as the

WSGI application. This calls :meth:`wsgi_app`, which can be

wrapped to apply middleware.

"""

return self.wsgi_app(environ, start_response)

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line2531, inwsgi_app

try:

ctx.push()

response = self.full_dispatch_request()

except Exception as e:

error = e

response = self.handle_exception(e)

except: # noqa: B001

error = sys.exc_info()[1]

raise

return response(environ, start_response)

finally:

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line2528, inwsgi_app

ctx = self.request_context(environ)

error: t.Optional[BaseException] = None

try:

try:

ctx.push()

response = self.full_dispatch_request()

except Exception as e:

error = e

response = self.handle_exception(e)

except: # noqa: B001

error = sys.exc_info()[1]

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line1825, infull_dispatch_request

request_started.send(self)

rv = self.preprocess_request()

if rv is None:

rv = self.dispatch_request()

except Exception as e:

rv = self.handle_user_exception(e)

return self.finalize_request(rv)

def finalize_request(

self,

rv: t.Union[ft.ResponseReturnValue, HTTPException],

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line1823, infull_dispatch_request

try:

request_started.send(self)

rv = self.preprocess_request()

if rv is None:

rv = self.dispatch_request()

except Exception as e:

rv = self.handle_user_exception(e)

return self.finalize_request(rv)

def finalize_request(

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line1799, indispatch_request

and req.method == "OPTIONS"

):

return self.make_default_options_response()

# otherwise dispatch to the handler for that endpoint

view_args: t.Dict[str, t.Any] = req.view_args # type: ignore[assignment]

return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)

def full_dispatch_request(self) -> Response:

"""Dispatches the request and on top of that performs request

pre and postprocessing as well as HTTP exception catching and

error handling.

File "/www/wwwroot/chat.py", line39, ingen_header

# post入参访问方式二:from-data(k-v)格式参数

@api.route('/gen_header', methods=['post'])

def gen_header():

wd = flask.request.values.get('wd')

future = executor.submit(do_heavy_work,wd)

return str(future.result())

def do_heavy_work(wd):

prompt = wd

#openai.api_key = api_key_list[-1]

openai.api_key = random.choice(api_key_list)

File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line435, inresult

self._condition.wait(timeout)

if self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]:

raise CancelledError()

elif self._state == FINISHED:

return self.__get_result()

else:

raise TimeoutError()

def exception(self, timeout=None):

"""Return the exception raised by the call that the future represents.

File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line384, in__get_result

with self._condition:

return self._state in [CANCELLED, CANCELLED_AND_NOTIFIED, FINISHED]

def __get_result(self):

if self._exception:

raise self._exception

else:

return self._result

def add_done_callback(self, fn):

"""Attaches a callable that will be called when the future finishes.IndexError: Cannot choose from an empty sequence

This is the Copy/Paste friendly version of the traceback.

concurrent.futures.process._RemoteTraceback: """Traceback (most recent call last): File "/usr/local/python3/lib/python3.7/concurrent/futures/process.py", line 239, in _process_worker r = call_item.fn(*call_item.args, **call_item.kwargs) File "/www/wwwroot/chat.py", line 44, in do_heavy_work openai.api_key = random.choice(api_key_list) File "/usr/local/python3/lib/python3.7/random.py", line 261, in choice raise IndexError('Cannot choose from an empty sequence') from NoneIndexError: Cannot choose from an empty sequence"""The above exception was the direct cause of the following exception:Traceback (most recent call last): File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 2551, in __call__ return self.wsgi_app(environ, start_response) File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 2531, in wsgi_app response = self.handle_exception(e) File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 2528, in wsgi_app response = self.full_dispatch_request() File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 1825, in full_dispatch_request rv = self.handle_user_exception(e) File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 1823, in full_dispatch_request rv = self.dispatch_request() File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 1799, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) File "/www/wwwroot/chat.py", line 39, in gen_header return str(future.result()) File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line 435, in result return self.__get_result() File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line 384, in __get_result raise self._exceptionIndexError: Cannot choose from an empty sequenceThe debugger caught an exception in your WSGI application. You can now look at the traceback which led to the error. If you enable JavaScript you can also use additional features such as code execution (if the evalex feature is enabled), automatic pasting of the exceptions and much more.Brought to you byDON'T PANIC, your friendly Werkzeug powered traceback interpreter.

Console Locked

The console is locked and needs to be unlocked by entering the PIN. You can find the PIN printed out on the standard output of your shell that runs the server.

PIN:

一、你侬我侬是成语吗?

优质答案1:

不是,“你侬我侬”出自元代赵孟頫的《我侬词》

“你侬我侬,忒煞情多,情多处,热如火。 把一块泥,捻一个你,塑一个我。 将咱两个,一齐打破,用水调和。 再捻一个你,再塑一个我。 我泥中有你,你泥中有我。 与你生同一个衾,死同一个椁。”

赏析

大意“你心中有我,我心中有你,如此多情,情深处,像火焰一样热烈,拿一块泥,捏一个你,捏一个我,将咱俩再一起打破,用水调和,再捏一个你,再捏一个我,我的泥人中有你,你的泥人中有我,只要活着就跟你睡一被窝,死了也要进同一口棺材。 ”

《我侬词》用喻新警,把夫妻关系比喻做泥,让人拍案惊奇。从两个人复杂的 *** 过程(捏塑、打破、调和、再塑),我们可以想象夫妇两个经历的不平凡,已经到了我中有你,你中有我,难分彼此,无法离弃的地步。

《我侬词》虽然用词设喻十分婉转,但字里行间暗藏机锋,透出铿锵英气,绵里藏针。特别是末句“与你生同一个衾,死同一个椁”(只要活着就跟你睡一被窝,死了也要进同一口棺材),表达了诗人对爱情排他性的誓死坚持。

优质答案2:

是成语,你侬我侬”是表示两个人很相爱的意思。

二、你侬我侬的意思?

优质答案1:

这句话的意思是指两个人之间的关系非常的甜蜜,你中有我,我中有你的意思。体现了人与人之间深厚的感情和美好的爱意,这通常是爱人或者恋人之间的亲密举动。

因为你爱一个人才会和他有非常亲密的举动,心里才会时刻装着她。但我们要在爱情理念保持清醒的态度,不要太过于沉迷其中,这样才不会让自己受到伤害。

优质答案2:

意思是你心中有我,我心中有你。即郎有情妾有意。

出处:元朝管道升创作的元曲《我侬词》。原文:

你侬我侬,忒煞情多;情多处,热如火;把一块泥,捻一个你,塑一个我,将咱两个一齐打碎,用水调和;再捻一个你,再塑一个我。我泥中有你,你泥中有我;我与你生同一个衾,死同一个椁。

优质答案3:

意思就是你和我亲亲蜜蜜,相互吸引

三、你侬我侬中的侬是什么意思?

优质答案1:

你侬我侬”是表示两个人很相爱的意思。

侬,吴越方言,可指你指我甚至指他人,总之是个很广泛的代词,此处“你侬”即“你”,“我侬”即“我”,就是你和我的意思。

优质答案2:

你侬我侬中的侬的意思是相爱的意思,你侬我侬,代表他们的感情非常的好,非常的恩爱,一般用于热恋中的男女会比较多见

优质答案3:

你好我好的意思,这是上海方言,属地方方言

四、“你侬我侬”是何意?

非常肉麻的词语,都是南方人说的如胶似漆。情意浓浓,耳鬓厮磨。

五、我侬你侬什么意思?

优质答案1:

意思就是卿卿我我的意思,形容热恋中的男女表现出的那种非常粘人的暧昧关系,人生中最快乐的事情无非就是有一段你侬我侬的爱情故事吧!每一次看见小年轻在你侬我侬的秀恩爱的时候,我都非常的羡慕,羡慕那一种缠缠绵绵的感情。

优质答案2:

你侬我侬,就是卿卿我我的样子。

本文地址:https://www.neihan001.com/zyfx/120324.html
版权声明:免责声明:本文来源网友投稿及网络整合仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。投诉邮箱:1765130767@qq.com.
  • 评论已关闭!