摘要:
# This is a sample Python script. # Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, 阅读全文
摘要:
最外面的引号是由Python本身使用的,而Windows shell看不到它,Windows只理解双引号。 Python将在Windows上将正斜杠转换为反斜杠,因此您可以使用 exe_path = r'C:\Windows\System32\mspaint.exe' exe_path2 = r'" 阅读全文
摘要:
if __name__ == '__main__': #print_hi('PyCharm') add_to_log_func('abcdefg') print("read_content:\n", read_file_func()) msg = input('key key for exit... 阅读全文
摘要:
python创建目录,判断目录是否存在,存在创建时不会报异常 def add_to_log_func(info): global gl_log_file_name log_directory=os.getcwd()+'\\log\\' #os.getcwd()获取当前所在目录 if not os.p 阅读全文
摘要:
python三元运算,c三目运算符使用 age3 = 10print(age3 > 10 if 'ok' else 'false')print('正常' if age3 > 2 else '异常') 阅读全文
摘要:
python模块的使用方法_类的创建与调用 eml = employee.Employee() #默认调用模块的__init__.pyemployee文件夹就是模块,与main.py主程序在同一个项目的文件夹main.py # This is a sample Python script. # Pr 阅读全文
摘要:
pycharm2023增加前进后退到主界面快捷按钮 阅读全文
摘要:
python,pycharm显示前进后退按钮 阅读全文
摘要:
python记录时间 python读写文件与全局变量的使用,创建日志文件,记录时间 # This is a sample Python script. # Press Shift+F10 to execute it or replace it with your code. # Press Doub 阅读全文
摘要:
File "D:/PycharmProjects/pythonProject_file_operation/main_file_op.py", line 14, in add_to_log time2 = time.strftime('%Y-%m-%d %H:%M:%s', time.localti 阅读全文