我正在做一个小机器人抽搐。电视和我有一个小问题,我不知道如何解决它。
user = getUser(line)
message = getMessage(line)
if "Pls Work" in message.lower():
sendMessage(s, "Okay I will work :)")
break
我不想为一个文本添加大量不同的组合,所以我该如何制作它以便将输入转换为小写,以便机器人理解它?我试图将lower()放在很多地方,但似乎没有用。
我对python很新,所以请对我很轻松:)
答案 0 :(得分:1)
您正在检查> react-speed-book@1.0.0 start /home/durrantm/Dropbox/92_2017/work/code/javascript/react/react_speed_book/react-speed-book
> NODE_ENV=development webpack-dev-server --inline
http://localhost:8080/
webpack result is served from /
content is served from /home/durrantm/Dropbox/92_2017/work/code/javascript/react/react_speed_book/react-speed-book
404s will fallback to /index.html
Child html-webpack-plugin for "index.html":
webpack: Compiled successfully.
是否只包含小写字母。它包含大写字母,因此永远不会满足Pls Work
条件。
只需按以下步骤操作:
if
这是在Python控制台中对我所说的简单测试:
if "pls work" in message.lower():
#stuff