- 博客(7)
- 资源 (4)
- 收藏
- 关注
原创 ubuntu 使用超级用户root登录
首先普通用户登录后,使用su切换超级用户。如果su时遇到authentication failed,需要设置超级用户密码:$ sudo passwd root然后输入新密码即可,此更改为永久更改。重启后会出现一个ubuntu的bug:ubuntu error found when loading /root/.profile在 /root/.profile中将 mesg...
2018-11-21 15:23:09 1169
原创 Python int,bytes, str相互转换
int转bytes: python2/3中,使用six.int2byte(): b = six.int2byte(1) 得到的结果是b = b'\x01'
2018-09-28 14:15:13 9503 1
原创 基于Qt5的Python自动向上滚动字幕设计
滚动字幕有两种,一种是左右滚动,一种是上下滚动。现在介绍一下上下滚动,利用QEditText控件实现。上代码:_fromUtf8 = QMetaType.QString.fromUtf8self.centralwidget = QWidget(MainWindow)self.centralwidget.setObjectName(_fromUtf8("centralwidget"))self....
2018-07-02 14:28:03 1551
转载 VM 网络连接配置
转载自网络:https://blog.csdn.net/u010176014/article/details/51926658 VMware 与 virtualBox配置过程相似。使用桥接模式,那么虚拟机访问的是局域网,这样就可以与宿主机通信;使用NAT模式,则虚拟机通过宿主机访问外网,但是不能与宿主机通信。...
2018-06-20 14:10:48 153
原创 Python shape函数
针对矩阵 t = [[[1,1,1],[1,1,1]],[[1,1,1],[1,1,1]]]print numpy.shape(t)得到 (2L, 2L, 3L), 这表示2个2*3矩阵。
2018-06-06 15:18:20 2827 1
原创 numpy 中ones,zeros函数
>>>import numpy as np>>>print np.ones((4,5,3),dtype=np.uint8)[[[1 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 1]] [[1 1 1] [1 1 1] [1 1 1] [1 1 1] [1 1 1]] [[1 1 1] [1 1 1] [1 1 1] ...
2018-06-01 16:38:11 7064
原创 PyCharm快捷操作
Ctrl+Shift + F7 高亮变量F3 和 Shift + F3 导航高亮部分ESC 移除高亮Local History | Show History 检查或者回退修改历史Ctrl+E 显示最近打开的文件列表Ctrl + 空格 显示已经键入的标识符的所有引用Alt+向上箭头 and Alt+向下箭头 快速跳转到上一个方法和下一个方法Ctrl+Shift+V 插入最近的剪切板内容Ctrl+Q ...
2018-05-30 14:53:16 372
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人