码迷,mamicode.com
首页 >  
搜索关键字:.section    ( 3248个结果
012.Python的字典和集合的相关函数
一 字典的相关函数 1.1 增函数 dictvar = {"a":1,"b":2} dictvar["c"] = 3 print(dictvar) 执行 [root@node10 python]# python3 test.py test.py {'a': 1, 'b': 2, 'c': 3} fr ...
分类:编程语言   时间:2020-02-07 01:15:55    阅读次数:102
leetcode349 350 Intersection of Two Arrays & II
1 """ 2 Intersection of Two Arrays 3 Given two arrays, write a function to compute their intersection. 4 Example 1: 5 Input: nums1 = [1,2,2,1], nums2 ...
分类:其他好文   时间:2020-02-06 23:00:09    阅读次数:74
Django系列7:Model数据操作、集合、单个、切片
1、 ...
分类:其他好文   时间:2020-02-05 18:25:01    阅读次数:52
PyCharm安装和使用教程(Windows系统)
说明: PyCharm 是一款功能强大的 Python 编辑器, 本文简单的介绍下PyCharm 在 Windows下是如何安装的。 PyCharm 的下载地址:http://www.jetbrains.com/pycharm/download/#section=windows 如果进入网页时间过长 ...
分类:Windows程序   时间:2020-02-05 18:03:51    阅读次数:104
学习力
学习力的基础 定义: 学习知识、 管理知识和 长久坚持的能力。 常见错误: 顺序式学习:按部就班地学习 缺乏整体概念 容易中途放弃 案例式学习 优点 目的性强 见效很快 成就感强 缺点 不成体系 容易遗忘 范围狭小 冲刺式学习 期末冲刺~!! 容易遗忘 很难学透 效率较低 学习力提升框架: 生理 锻 ...
分类:其他好文   时间:2020-02-04 20:11:10    阅读次数:84
ranger kafka - Authorizing Kafka access over non-authenticated channel via Ranger
Authorizing Kafka access over non-authenticated channel via Ranger This section answers some questions one is likely to encounter when trying to autho ...
分类:数据库   时间:2020-02-04 15:59:14    阅读次数:83
【入门】touchgfx 之 《Tutorial 3: Applications with multiple screens》
步骤1:设置两个屏幕 多屏应用 在本教程中,您将学习如何在应用程序中创建多个屏幕以及如何在两个屏幕之间共享数据。我们将创建一个模拟时钟的应用程序,它将使用一个屏幕设置小时和分钟,并将设置的时间传递给另一个带有运行时钟的屏幕。 您还将学习如何使用TouchGFX Designer根据交互(例如屏幕更改 ...
分类:移动开发   时间:2020-02-04 10:23:16    阅读次数:102
假期三
定义一个 Drawable 的特 质,其包括一个 draw 方法,默认实现为输出对象的字符串表示。定义一个 Point 类表示点, 其混入了 Drawable 特质,并包含一个 shift 方法,用于移动点。所有图形实体的抽象类为Shape,其构造函数包括一个 Point 类型,表示图形的具体位置( ...
分类:其他好文   时间:2020-02-04 00:44:31    阅读次数:79
Codeforces 1291D
D. Irreducible Anagrams time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Let's call two s ...
分类:其他好文   时间:2020-02-03 12:19:08    阅读次数:167
SparkStreaming(一)--核心概念及算子
1.环境 CDH 5.16.1 Spark 2.3.0.cloudera4 2.核心概念 官网: https://spark.apache.org/docs/2.3.0/streaming programming guide.html GitHub: https://github.com/apach ...
分类:其他好文   时间:2020-02-02 23:57:50    阅读次数:161
3248条   上一页 1 ... 27 28 29 30 31 ... 325 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!