摘要:
背景: 通常找python包的时候直接用下边这句话就可以了 不用每次到处找需要的包。 pip install math 问题: 但是今天使用的时候,出现下面这个问题: Fatal error in launcher: Unable to create process using '"D:\pytho 阅读全文
摘要:
format是字符串内嵌的一个方法,用于格式化字符串。以大括号{}来标明被替换的字符串。 它通过{}和:来代替%。 1、基本用法1. 按照{}的顺序依次匹配括号中的值s = "{} is a {}".format('Tom', 'Boy')print(s) # Tom is a Boy s1 = " 阅读全文
摘要:
Python 3.9.10, Window 64bit 警告:ParserWarning: Falling back to the 'python' engine because the 'c' engine does not support regex separators (separators 阅读全文