我想创建一个可以在文本输入等于命令时调用的函数。
from os import system
from time import sleep
import ctypes
ctypes.windll.kernel32.SetConsoleTitleW('SimpleChat')
print('Hi, welcome to my basic chat engine!')
sleep(5)
system('cls')
username = input('Enter a username: ')
ctypes.windll.kernel32.SetConsoleTitleW('SimpleChat - ' + username)
system('cls')
def commands (command):
commandlist = ['/help','/clear', '/commands']
commanddict = {'/help' : 'help', '/clear' : 'clear', '/commands' : 'commands'}
for possibility in commandlist:
if command == possibilty:
commanddict[possibility]()
break
def textInput (text):
if text[0] == '/':
commands(text)
第24行是否可以调用函数?我想象它的工作方式是它会找到关键'可能性'的条目,然后将其称为函数,但我不确定。
如果以前的代码不起作用,那会是什么?
答案 0 :(得分:3)
假设您的代码中有一个名为help
,clear
,......的函数。
def help():
print("help!")
然后,下面的commands
函数将执行您想要的操作。
请注意,函数可以用作Python中字典的值。
def commands (command):
command_dict = {'/help' : help, '/clear' : clear, '/commands' : commands}
func = command_dict.get(command)
if func is not None:
func()
else:
print("I don't have such a command: %s" % command)
我想'/commands'
中command
的值(command_dict
函数)应更改为其他函数。如果您输入'命令,程序将崩溃。