摘要:
方法一: def duplicated_count(text): result=[] text=text.lower() for i in text: if text.count(i) > 1 and i not in result: result.append(i) return len(resu 阅读全文
摘要:
问题: 打开有道词典任务栏图标显示为白色方框,而其它图标显示正常。解决:1.Win+R 打开运行窗口,输入 %APPDATA%\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar 2. 在弹出的 TaskBar 文件夹中,发现没有 阅读全文
摘要:
方法一: def alter_case(string): new="" for i in string: if i.isupper(): new+=i.lower() elif i.islower(): new+=i.upper() else: new+=i return new 调用函数: alt 阅读全文