
Python
iblctw
这个作者很懒,什么都没留下…
展开
-
pyqt5 滚动条QScrollArea()例程
from PyQt5.QtWidgets import *from PyQt5.QtCore import *from PyQt5 import QtWidgetsimport sysclass MainWindow(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): self.scroll = QScrollA转载 2020-07-06 20:08:30 · 1904 阅读 · 0 评论 -
使用dict.items()遍历字典中的键值
Python 字典(Dictionary) items() 函数以列表返回可遍历的(键, 值) 元组数组。返回可遍历的(键, 值) 元组数组eg:dic = {'a':1, 'b':2}for key ,value in dic.items(): print(key,',', value)原创 2020-05-29 10:41:25 · 911 阅读 · 0 评论 -
Python中[ : n]、[m : ]、[-1]、[:-1]、[::-1]、[2::-1]和[1:]区别
[m : ]代表列表中的第m+1项到最后一项[ : n]代表列表中的第一项到第n项import numpy as npa=[1,2,3.4,5]print(a)[ 1 2 3 4 5 ]print(a[-1]) 取最后一个元素结果:[5]print(a[:-1]) 除了最后一个取全部结果:[ 1 2 3 4 ]print(a[::-1]) ...转载 2020-02-13 14:27:41 · 539 阅读 · 0 评论