pycharm整体tab
直接tab
pycharm整体前进
shift+tab
获取用户输入(字符串)
https://blog.csdn.net/liuyingying0418/article/details/100126348
导入其他路径文件
import sys
sys.path.append(file folder)
配置文件 .ini读取
配置文件格式
[section]
option_1=content_1
option_2=content_2
config = configparser.ConfigParser(allow_no_value=True)
config.read(root, encoding='utf-8')
content = config.get('section','option_1') #get content_1
options = config.oprions('section') #get a list of options
items = config.items('section')#output:
将字符串用符号\分割
root_list = root.split('\\')