ICode9

精准搜索请尝试: 精确搜索
  • 错误笔记2021-08-16 07:32:14

    for _, v := range dirs { ni := i + v.x nj := i + v.y //看清是啥!!! if ni >= 0 && nj >= 0 && ni < m && nj < n && visited[ni][nj] == false { if dfs(ni, nj, k+1) { return true } } }

  • Kaggle竞赛:Titianic——随机森林(8.4)2021-08-04 21:04:04

    目录 参考资料 知识点——遍历目录和文件 1. 导入包 2. 读入数据 3. 查看前5行数据 4. EDA:筛选特定值和某个列 5. 分类变量转化为哑变量 6. 随机森林 7. 预测 8. 导出 随机森林全文代码 参考资料 原文 os.walk的用法 random_state的用法 知识点——遍历目录和文件 获取当

  • Django 静态文件配置2021-07-27 09:03:11

    web一般都需要加载Jquery文件或者js文件. 如果我们把文件和html放一起本地,网页通过socket传输,jquery文件会404找不到,无法传输给客户端. 因为这么导入的jquery 是本地的导入方式,但不是基于Django的模式传输的. 基于Django的模式我们需要把他们配置到静态设置中去,在项目名中

  • arr包集成方案及问题处理2021-06-22 15:59:12

    在开发Android项目的时候经常会导入三方jar或者arr包,冲突问题难免会遇到,现在记录一种新的方案: 思路:新建一个library库,在新建的库中集成三方jar或者arr包,这样会大大减少直接在app主模块引入时出现的各种冲突兼容问题。 操作步骤: 1.新建library库 2.libs下导入三方jar或者arr包,并

  • django STATIC_ROOT、STATICFILES_DIRS、STATIC_URL作用和区别2021-06-12 09:04:31

    1、STATIC_ROOT STATIC_ROOT 是在部署静态文件时(pyhtonmanage.pycollectstatic)所有的静态文静聚合的目录。 python manage.py collectstatic django会把所有的static文件都复制到STATIC_ROOT文件夹下 这个在聚合命令起作用后,会产生文件复制和转移的功能,这个功能会把app下的

  • Django的templates的DIRS设置报错2021-03-28 15:00:55

    博文背景 如果你使用的是Django2,并且你使用了Pycharm自动生成了Django的代码,那么你很可能会遇到如下的报错,这个报错成为了我学习Django过程中的第一个拦路虎。 DIRS‘: [BASE_DIR / ‘templates‘] TypeError: unsupported operand type(s) for /: ‘str‘ and ‘str‘ 具体

  • Django的创建以及‘DIRS‘: [BASE_DIR / ‘templates‘]问题的解决2021-03-20 22:58:51

    Django文件的创建以及'DIRS': [BASE_DIR / 'templates']问题的解决   1、在pycharm中创建Django项目 2、点击create后进入项目 3、在终端输入python manage.py runserver运行,查看Django是否配置成功 4、此时可能会遇到问题,我在测试的时候就遇到问题了 该问题就是把‘/’识

  • 21-3-16 力扣每日刷题 59. 螺旋矩阵 II2021-03-16 19:03:27

    给你一个正整数 n ,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的 n x n 正方形矩阵 matrix 。 示例 1: 输入:n = 3 输出:[[1,2,3],[8,9,4],[7,6,5]] 示例 2: 输入:n = 1 输出:[[1]] 提示: 1 <= n <= 20 今天这题和昨天的大同小异,核心思路都是没有改变的,就只是更

  • C++读取图片发送给python显示出来2021-03-09 21:03:23

    C++代码 : #include <iostream> #include <stdlib.h> #include <python2.7/Python.h> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <numpy/arrayobject.h> #include <opencv2/imgproc.hpp> #

  • python ‘DIRS‘: [os.path.join(BASE_DIR, ‘templates‘)] NameError: name ‘os‘ is not defined2021-02-23 15:01:57

    过年了准备跳槽,现在python这么火,感觉学习一下可能会很有用,于是网上找教程,在搭建Diango+python的时候突然一脸懵逼,一步步按照网上说的来的,可是第一步就报错了 我们可以看到报错提示os未定义,翻了下配置文件确实上面没有定义这个os 但是使用的BASE_DIR确有定义,我也是

  • Python 判断目录或文件是否存在2021-02-12 19:02:23

    判断目录是否存在,若不存在,则创建 import os dirs = '/Users/joseph/work/python/' if not os.path.exists(dirs): os.makedirs(dirs) 判断文件是否存在,若不存在,则创建 import os filename = '/Users/joseph/work/python/poem.txt' if not os.path.exists(filename): os.

  • Djava.ext.dirs启动问题2021-01-27 19:02:56

    只要你得代码没问题 遇到以下错 : Caused by: java.security.NoSuchAlgorithmException: AES KeyGenerator not available NoSuchAlgorithmException的错误,Caused by: java.lang.IllegalStateException: Unable to acquire AES algorithm. This is required to function.Cause

  • 用idea编辑器出现的问题2021-01-13 15:33:10

    错误: Error:Cannot run program "E:\jdk1.8.0_162\bin\java.exe" (in directory "C:\Users\Administrator\AppData\Local\JetBrains\IntelliJIdea2020.1\compile-server"): Malformed argument has embedded quote: -Djava.endorsed.dirs=\&quo

  • java.endorsed.dirs设置了系统属性,您将看到类似的错误2021-01-06 19:33:18

    如果java.ext.dirs设置了系统属性,您将看到类似的错误。   要修复此错误,请删除ext/目录或java.ext.dirs系统属性。   请参阅JEP 220:模块化运行时映像。   删除了背书标准覆盖机制   该java.endorsed.dirs系统属性和lib/endorsed目录不再存在。如果检测到任何一个,javac编译

  • python上传图片到本地2020-12-14 17:35:28

    from face_recognition(我的主应用文件夹) import settingsfp = request.FILES.get("file")if not fp: return msgJson.jsonMsg('上传样本为空', 0)# 文件名name = str(mobile) + datetime.now().strftime("%Y%m%d%H%M%S")# fp 获取到的上传文件对象path = os.path.join

  • Flink常见问题解决记录2020-12-11 11:02:58

    1.Hardlink from files of previous local stored state might cross devices 开启了state.backend.local-recovery: true 任务checkpoint的时候一直报错 Fail to create hard link from xx java.nio.file.FileSystemException xx Invalid cross-device link 如果'taskmanager.

  • 498. 对角线遍历2020-11-13 23:02:03

    给定一个含有 M x N 个元素的矩阵(M 行,N 列),请以对角线遍历的顺序返回这个矩阵中的所有元素,对角线遍历如下图所示。   示例: 输入:[ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ]] 输出: [1,2,4,7,5,3,6,8,9] 解释:   说明: 给定矩阵中的元素总数不会超过 100000 。 作者:力扣 (LeetCod

  • 30 Day Challenge Day 18 | Leetcode 200. Number of Islands (BFS)2020-10-03 04:00:23

    题解 Medium 用BFS再做了一遍。 class Solution { public: int numIslands(vector<vector<char>>& grid) { if(grid.empty()) return 0; int count = 0; vector<vector<bool>> visited(grid.size(), vector

  • [LeetCode] 1041. Robot Bounded In Circle2020-09-18 08:02:53

    On an infinite plane, a robot initially stands at (0, 0) and faces north.  The robot can receive one of three instructions: "G": go straight 1 unit; "L": turn 90 degrees to the left; "R": turn 90 degress to the right. The r

  • python 人像抠图2020-07-11 13:34:35

    安装依赖: 1. 将依赖保存为requirements.txt 文件 appdirs==1.4.4 astor==0.8.1 Babel==2.8.0 certifi==2020.6.20 cfgv==3.1.0 chardet==3.0.4 click==7.1.2 cma==3.0.3 colorlog==4.1.0 cycler==0.10.0 decorator==4.4.2 distlib==0.3.1 docopt==0.6.2 filelock==3.0.12 flake8

  • python 判断目录和文件是否存在,若不存在即创建2020-06-05 15:56:38

    判断目录是否存在 import os dirs = '/Users/joseph/work/python/' if not os.path.exists(dirs): os.makedirs(dirs) 判断文件是否存在 import os filename = '/Users/joseph/work/python/poem.txt' if not os.path.exists(filename): os.system(r"tou

  • django关于DEBUG = False 影响 admin样式2020-03-15 18:54:08

    再setting.py的STATIC_URL 下添加 1 STATIC_URL = '/static/' 2 STATICFILES_DIRS = ( 3 os.path.join(BASE_DIR, 'static'), 4 ) 5 TEMPLATE_DIRS = ( 6 os.path.join(BASE_DIR, 'templates'), 7 )    参考原作者链接:https://www.

  • php 创建多级文件夹2020-03-12 18:07:57

    /** *创建多级文件夹 * * @param 路径 /data/wwwroot/vhost/abc.seabig.cn/uploads/2002/ * @param 权限 755/777 $mode */ function mkpath($path, $mode = 0777) { $path = str_replace("\\","_|",$path); //将$path 中的 "\\" 替换为 "_

  • python中os.walk的用法详解2020-02-21 15:54:36

    python中os.walk是一个简单易用的文件、目录遍历器,可以帮助我们高效的处理文件、目录方面的事情。 1.载入要使用os.walk,首先要载入该函数 可以使用以下两种方法 import os from os import walk 2.使用 os.walk的函数声明为: walk(top, topdown=True, οnerrοr=None, followli

  • os.walk()2020-01-28 22:01:41

        实例 以下实例演示了 walk() 方法的使用: #!/usr/bin/python # -*- coding: UTF-8 -*- import os for root, dirs, files in os.walk(".", topdown=False): for name in files: print(os.path.join(root, name)) for name in dirs: print(os.path.

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有