10 2022 档案
摘要:1、打开pycham,打开python program 在File中--打开settings 2、在project中 “Python Interpreter“ 选择“Add Interpreter” 3、选择Virtualenv Environment 在Environment 中选择“Existi
阅读全文
摘要:Win10怎么永久禁用驱动数字签名呢? 材料/工具 Win10电脑 方法 1 点击电脑左下角的【开始】图标。 2 点击【设置】图标。 3 点击【更新和安全】。 4 点击左侧【恢复】,选择右侧【高级启动】中的【立即重新启动】。 5 重启后在出现的界面点击【疑难解答】。 6 点击【高级选项】。 7 点击
阅读全文
摘要:movies = pd.read_table( file_path, header = None, sep="::", names=["movieID","title","genres"], engine = "python", )添加 encoding='ISO-8859-1'可解决该问题 mov
阅读全文
摘要: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
阅读全文
摘要:1. random.random(): 返回随机生成的一个浮点数,范围在[0,1)之间 2. random.uniform(a, b): 返回随机生成的一个浮点数,范围在[a, b)之间 在指定范围内生成随机数,有两个参数,一个是范围上限,一个范围下限 具体用法如下: import randompr
阅读全文