今天系统的学习了 Java IO 这部分的知识,把一些之前没有用过的,或者忘记的方法和类重新学了一下。怕自己睡一觉把今天学的忘完了QaQ。所以,不得已写一下博客 IO概述 package com.coder.com; import java.io.*; import java.nio.charset ...
分类:
编程语言 时间:
2021-07-23 17:40:48
阅读次数:
0
0x01--新发地菜价 #!/usr/local/bin/python3.6 # -*- encoding=utf-8 -*- """ @coder: diygou @since: 2021/6/5下午6:33 """ import requests from bs4 import Beautifu ...
分类:
其他好文 时间:
2021-06-06 18:49:24
阅读次数:
0
https://blog.csdn.net/notacoder/article/details/102680465 https://blog.csdn.net/weixin_46233323/article/details/104871075 sudo rm /var/lib/apt/lists/l ...
分类:
系统相关 时间:
2021-06-02 19:09:24
阅读次数:
0
使用线程池的时候,WordNet会出现lazyrender的错误,通过查看一些资料,使用下面的方法去解决: import nltk from nltk.corpus import sentiwordnet as swn # Do this first, that'll do something ev ...
分类:
编程语言 时间:
2021-05-23 23:47:26
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 4000010, mod = 1e9 + 7; int n, k, fact ...
分类:
其他好文 时间:
2021-05-23 23:13:50
阅读次数:
0
import tensorflow as tf import time import numpy as np import matplotlib.pyplot as plt import sys from tensorflow import keras import os from tensorfl ...
分类:
其他好文 时间:
2021-04-29 11:43:25
阅读次数:
0
最常用的get、post方法 1.get请求方法 带请求参数: import requests ''' URL Parameters 请求方式: URL参数 例如: 以get 方式请求http://httpbin.org/get?first_name=hello&last_name=word ''' ...
分类:
编程语言 时间:
2021-04-24 11:56:41
阅读次数:
0
linux上执行wget报错:unable to resolve host address 爱摄影的coder 2018-07-21 10:25:19 7270 收藏 4 分类专栏: Linux 版权 使用wegt命令报错情况 [root@centosserver2 downloads]# wget ...
分类:
系统相关 时间:
2021-04-08 13:03:11
阅读次数:
0
==和equals()的区别 一、== ==作比较,如果是值类型,则是比较值是否相等;如果是引用类型的话,则是判断两个对象的内存地址是否相同。 注:对几个基本数据类型来说,是作为常量在方法区中的常量池里面以HashSet策略存储起来的。在常量池中,一个常量对应一个地址,因此不管是多少个变量的值相同( ...
分类:
其他好文 时间:
2021-03-16 11:42:06
阅读次数:
0