MUL

python包的相对导入与绝对导入使用

為{幸葍}努か 提交于 2019-12-06 15:04:55
一、错误使用,造成的错误描述如下: ModuleNotFoundError: No module named '__main__.operation'; '__main__' is not a package ModuleNotFoundError: No module named 'operation' ValueError: attempted relative import beyond top-level package 二、实例目录结构: cur_path │ ├─packages │ ├─__init__.py │ ├─ui.py │ │ │ ├─operation │ │ ├─__init__.py │ │ ├─mixed_operation.py │ │ └─simple_operation.py │ │ │ └─util │ ├─__init__.py │ ├─add.py │ ├─div.py │ ├─mul.py │ └─sub.py └─main.py 三、示例: 1、main.py #!/usr/bin/env python # -*- coding: utf-8 -*- from packages.ui import main if __name__ == "__main__": main() 2、packages/ui.py from

python包的相对导入与绝对导入使用

ⅰ亾dé卋堺 提交于 2019-12-06 14:29:57
一、错误使用,造成的错误描述如下: ModuleNotFoundError: No module named '__main__.operation'; '__main__' is not a package ModuleNotFoundError: No module named 'operation' ValueError: attempted relative import beyond top-level package 二、实例目录结构: cur_path │ ├─packages │ ├─__init__.py │ ├─ui.py │ │ │ ├─operation │ │ ├─__init__.py │ │ ├─mixed_operation.py │ │ └─simple_operation.py │ │ │ └─util │ ├─__init__.py │ ├─add.py │ ├─div.py │ ├─mul.py │ └─sub.py └─main.py 三、示例: 1、main.py #!/usr/bin/env python # -*- coding: utf-8 -*- from packages.ui import main if __name__ == "__main__": main() 2、packages/ui.py from

乘法口诀表(函数)

时间秒杀一切 提交于 2019-12-05 07:49:23
#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> void Mul(int n){ int a = 0; int b = 0; for (a = 1; a <= n; a++){ for (b = 1; b <= a; b++){ printf("%d*%d=%-2d ", a, b, a*b); } printf("\n"); } } int main(){ int n = 0; scanf("%d", &n); Mul(n); system("pause"); return 0; } 来源: https://my.oschina.net/u/4251026/blog/3132827

十一课堂|通过小游戏学习Ethereum DApps编程(5)

我与影子孤独终老i 提交于 2019-12-01 22:19:34
1 ERC721 tokens 在这个游戏里面,我们使用ERC721 tokens标准,通常的情况下,使用的是ERC20 tokens。 有兴趣的童学可以研究一下两个标准的不同。 ERC721 tokens有两种方式交易"金币"的方式。虽然在这里我用的"金币"一词,但是可以是如何东西,你的加密猫,你的无敌英雄角色。 下面的 transfer 和 approve + takeOwnership 是ERC721 tokens标准里面的两个交易接口。完成的功能相同。 function transfer(address _to, uint256 _tokenId) public; function approve(address _to, uint256 _tokenId) public; function takeOwnership(uint256 _tokenId) public; 2 Event Event的调用方法: 定义一个Event contract ERC721 { event Transfer(address indexed _from, address indexed _to, uint256 _tokenId); event Approval(address indexed _owner, address indexed _approved, uint256

AndroidFM模块学习之四源码分析(十)

廉价感情. 提交于 2019-11-29 07:09:47
接上一篇,今天我们来看看android\vendor\qcom\opensource\fm\qcom\fmradio\FmRxControls.java / * *打开FM Rx / Tx。 * Rx = 1和Tx = 2 * / public void fmOn(int fd, int device) { int re; FmReceiverJNI.setControlNative(fd, V4L2_CID_PRIVATE_TAVARUA_STATE, device ); setAudioPath(fd, false); re = FmReceiverJNI.SetCalibrationNative(fd); if (re != 0) Log.d(TAG,"Calibration failed"); } / * *关掉FM Rx / Tx * / public void fmOff(int fd){ FmReceiverJNI.setControlNative(fd, V4L2_CID_PRIVATE_TAVARUA_STATE, 0 ); } / * *设置静音控制 * / public void muteControl(int fd, boolean on) { if (on) { int err = FmReceiverJNI.setControlNative(fd,

SQL keys, MUL vs PRI vs UNI

Deadly 提交于 2019-11-29 06:43:32
摘自: http://stackoverflow.com/questions/5317889/sql-keys-mul-vs-pri-vs-uni/15268888#15268888 SQL keys, MUL vs PRI vs UNI DESCRIBE <table>; This is acutally a shortcut for: SHOW COLUMNS FROM <table>; In any case, there are three possible values for the "Key" attribute: PRI UNI MUL The meaning of PRI and UNI are quite clear: PRI => primary key UNI=> unique key The third possibility, MUL, (which you asked about) is basically an index that is neither a primary key nor a unique key. The name comes from "multiple" because multiple occurences of the same value are allowed. Straight from the MySQL

乘法口诀的函数

自闭症网瘾萝莉.ら 提交于 2019-11-29 00:34:49
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> void Mul(int num) { int i; int j; for (i = 1; i <= num; i++) { for (j = 1; j <= i; j++) { printf("%d*%d=%d ", i, j, i*j); } putchar('\n'); } } int main(){ int num = 0; scanf("%d", &num); Mul(num); system("pause"); return 0; } 来源: oschina 链接: https://my.oschina.net/u/4251026/blog/3134461

乘法口诀的函数

夙愿已清 提交于 2019-11-29 00:20:24
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> void Mul(int num) { int i; int j; for (i = 1; i <= num; i++) { for (j = 1; j <= i; j++) { printf("%d*%d=%d ", i, j, i*j); } putchar('\n'); } } int main(){ int num = 0; scanf("%d", &num); Mul(num); system("pause"); return 0; } 来源: oschina 链接: https://my.oschina.net/u/4251026/blog/3134461

js模仿淘宝放大镜

女生的网名这么多〃 提交于 2019-11-29 00:08:52
先看看效果 html: <div class="container"> <div class="wrapper-container"> <!-- 大图 --> <div class="wrapper"></div> <!-- 放大镜 --> <div class="min-box"></div> <!-- 大大图盒子 --> <div class="maxs"></div> </div> <!-- 缩略图 --> <ul class="slids"></ul> </div> css: *{ padding: 0; margin: 0; } .container { width: 500px; margin:50px; } .wrapper-container { width: 500px; height: 500px; border: 1px solid #ccc; position: relative; cursor: move; } .min-box { border: 2px solid #ccc; background: rgba(255, 255, 255, .5); position: absolute; display: none; } .wrapper { width: 100%; height: 100%; } .maxs { width: 500px;

Java中BigDecimal的加减乘除和比较大小

牧云@^-^@ 提交于 2019-11-27 18:11:27
背景 CPU表示浮点数由两个部分组成:指数和尾数,这样的表示方法一般都会失去一定的精确度,有些浮点数运算也会产生一定的误差。java的float只能用来进行科学计算或工程计算,在大多数的商业计算中,一般采用java.math.BigDecimal类来进行精确计算。 运算 在使用BigDecimal类来进行计算的时候,主要分为以下步骤: 1、float或者double构建BigDecimal对象。 2、调用BigDecimal的加,减,乘,除等相应的方法进行算术运算。 3、把BigDecimal对象转换成float,double,int等类型。 基本类型变量转化为BigDecimal变量 BigDecimal b1 = new BigDecimal(Double.toString(0.00)); //方法一 BigDecimal b2 = BigDecimal.valueOf(0.00);//方法二 加减乘除的几种方法 public BigDecimal add(BigDecimal value);//加法 public BigDecimal subtract(BigDecimal value);//减法 public BigDecimal multiply(BigDecimal value);//乘法 public BigDecimal divide(BigDecimal