可切片字典

slict的Python项目详细描述


Build StatusVersion StatusDownloads

支持切片的字典。

slct实现映射并接受[start]:[stop]索引,以便沿着元组键的一个或多个维度对其进行切片。

slct可以包装任何其他python映射,并且是轻量级的(空间上是o(1))。例如,用chest试试。

示例

>>>fromslictimportSlict>>>weather=Slict({("12pm","Temperature"):15.,("12pm","Wind Speed"):12.5,...("1pm","Temperature"):15.5,("1pm","Wind Speed"):9.2})>>>temps=weather[:,"Temperature"]>>>forkintemps:...print("The temperature at {:4s} is {:f}".format(k,temps[k]))Thetemperatureat12pmis15.000000Thetemperatureat1pmis15.500000>>>noon_weather=weather["12pm",:]>>>forkinnoon_weather:...print("The {:s} is {:f}".format(k,noon_weather[k]))TheTemperatureis15.000000TheWindSpeedis12.500000

安装

slict在python包索引(pypi)上:

pip install slict

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
我们应该在测试java代码时模拟黄瓜测试吗。我们应该在多大程度上使用黄瓜?   Hibernate Weblogic 10.3.4 java。lang.NoSuchMethodError:javax/persistence/spi/PersistenceUnitInfo。getValidationMode()Ljavax/persistence/ValidationMode;   java如何在main()中访问私有静态实例变量   java JMockit无法模拟类的公共final字段   java是否可以返回特定控制器操作的输出(html)?   java如何返回正确类型的列表?   rest-OpenUI/Swagger-java-to-API   java组织。springframework。豆。工厂NoSuchBeanDefinitionException或加载ApplicationContext失败   java使用POST将参数从JSP发送到Servlet   java如何监听特定的按钮按下和主视图用户交互?   java如何让gradle在本地maven repo中覆盖库?   如何在Java中“合并”两个URI?   java如何制作一个方法来移动数组中的字符?   使用来自java的命令启动powershell窗口   java垃圾收集器和匿名类   java如何为CellTable(GWT 2.4)中的ImageResourceCell创建PanelPopup?