I am getting an error and I don't know how to refine my code.
Basically, what I am trying to do is pseudo echo command in a terminal app.
while True:
foo = input("~ ")
bar = str
if foo in commands:
eval(foo)()
elif foo == ("echo "+ bar):
print(bar)
else:
print("Command not found")
Obviously, it's not working.
Does anybody know what I need to use to accomplish this project?
