摘要:
前提: from tkinter import Tcl 在VScode上编译python时,出现ModuleNotFoundError: No module named 'tkinter'报错,缺失tkinter,本文简单说明下如何在ubuntu19下python3安装tkinter GUI库。 操 阅读全文
摘要:
说明: 字符串就是一系列字符,在Python中用引号括起来的都是字符串,引号可以是单引号,也可以是双引号,比如:“This is a book.” ‘This is an apple.’ 接下来简单说明下关于字符串大小写的变换。 操作: casefold() 所有字母小写lower() 所有字母小写 阅读全文