```python class Human: def __init__(self, name, age): self.__name = name self.__age = age @property def age(self): return self.__age @age.setter def a ...
分类:
编程语言 时间:
2021-05-24 03:06:24
阅读次数:
0
文档: https://www.pycryptodome.org/en/latest/ # pip install pycryptodome from Crypto.Cipher import AES import base64 class Encrypt: def __init__(self, k ...
分类:
编程语言 时间:
2021-05-24 02:53:36
阅读次数:
0
sudo vim /etc/netplan/50-cloud-init.yaml # This file is generated from information provided by the datasource. Changes # to it will not persist across ...
分类:
系统相关 时间:
2021-05-24 00:04:56
阅读次数:
0
怎么引用模块 环境:win7 + python3.5.2文档结构: -project?-data?-src -filterCorpus.py -translateMonolingual.py 问题描述:在translateMonolingual.py中引用filterCorpus.py中的函数fun ...
分类:
编程语言 时间:
2021-05-23 23:12:29
阅读次数:
0
Prefix and Suffix Search (H) 题目 Design a special dictionary which has some words and allows you to search the words in it by a prefix and a suffix. Im ...
分类:
其他好文 时间:
2021-05-03 12:54:25
阅读次数:
0
#结构关系图 #本地仓库初始化 命令为 git-init #add commit命令 #status命令 查看工作区和缓存区的状态 #log命令 操作过多会导致log一页显示不来,通过空格和b来切换上一页和下一页 退出q 显示信息简洁化命令 git log --oneline git reflog ...
分类:
其他好文 时间:
2021-05-03 12:06:30
阅读次数:
0
思路清晰就好,不是很难只是有点复杂。 #include<bits/stdc++.h> #define atest using namespace std; int n,l,r,t; int mapp[601][601]; int main(){ cin>>n; cin>>l; cin>>r; cin ...
分类:
其他好文 时间:
2021-05-03 11:58:33
阅读次数:
0
使用准备 - 下载安装 下载安装 v_box , 下载安装 Vagrant 创建 Vagrantfile 在要安装的目录中进行 vagrant init centos/7 下载镜像生成虚拟机 vargrant up 如果本地是有镜像的话则会使用本地镜像, 若没有则下载网络镜像需要一些时间 执行完毕后 ...
分类:
其他好文 时间:
2021-05-03 11:58:00
阅读次数:
0
adb连接安卓设备失败failed to start daemon Reference:https://blog.csdn.net/whshuo2010/article/details/51094495?locationNum=8 背景 连接设备后,使用adb devices命令查看目前连接的设备, ...
分类:
移动开发 时间:
2021-05-03 11:40:13
阅读次数:
0
The object 'DF__*' is dependent on column '*' - Changing int to double Try this: Remove the constraint DF_Movies_Rating__48CFD27E before changing your ...
分类:
其他好文 时间:
2021-04-30 12:45:29
阅读次数:
0