study from : https://www.cnblogs.com/reaptomorrow-flydream/p/9613847.html python 二维数组键盘输入 1 m = int(input())2 grid = [[] for i in range(m)]3 for i in range(m):4 line = input().split(' ')5 for j in range(len(line)):6 grid[i].append(int…
Ubuntu上面安装Redis Python 1,下载redis源码https://redis.io/download,下载地址:http://124.205.69.169/files/A0920000066BC41D/download.redis.io/releases/redis-4.0.8.tar.gz 2,在Ubuntu上面解压 tar -xzf redis-4.0.8.tar.gz cd redis-4.0.8 make '编译Redis sudo make install ‘安装R…