- 代码题 1.创建一个函数,接收一个字符串参数,判断其做为Python标识符是否合法. 具体要求: 如果合法则输出 True,否则输出 False. 如果该字符串与Python内置的关键字,或Bifs冲突,则打印'conflict' 注: Python标识符的规则,关键字和Bifs可搜索得到 import keyword, string print(keyword.kwlist) print() print(string.ascii_letters) print() print(string.…