我收到一个错误,我不知道如何改进我的代码。
基本上,我想做的是echo
终端应用程序中的伪命令。
while True:
foo = input("~ ")
bar = str
if foo in commands:
eval(foo)()
elif foo == ("echo "+ bar):
print(bar)
else:
print("Command not found")
显然,它不起作用。
有人知道我需要用什么来完成这个项目吗?