码迷,mamicode.com
首页 >  
搜索关键字:python long string    ( 244880个结果
利用质因数分解定理求与n互质的数的个数
今天我来分享一下如何利用素数分解定理求解与n互质的数的个数。 下面是代码 #include<bits/stdc++.h> using namespace std; long long fun(int x) { long long ans=x; int t=sqrt(x); int cnt; for( ...
分类:其他好文   时间:2021-04-26 14:12:06    阅读次数:0
GraphQL学习:类型定义
关于GraphQL之前有描述,可以参考GraphQL 入门。但是这个入门写得不是很好,东拉西扯。为巩固所学我自己总结一下。 我们先定义一个类型系统: type Person { name: String! } type ClassRoom { tercher: Person! students: [ ...
分类:其他好文   时间:2021-04-26 14:10:12    阅读次数:0
Python的特点
(1)python是完全面向对象的语言1 + 1 函数、模块、数字、字符串都是对象,在python中一切皆对象 完全支持继承、重载、多重继承 支持重载运算符,也支持泛型设计 (2)python拥有一个强大的标准库 Python标准库提供了系统管理、网络通信、文本处理、数据库接口图形 系统、xml处理 ...
分类:编程语言   时间:2021-04-26 14:09:10    阅读次数:0
Python 的优缺点
优点: 简单易学 免费开源 面向对象 丰富的库 可扩展性 如果需要一段关键代码运行得更快或者希望某些算法不公平,可以把这部分程序用C或C++编写,然后在python程序中使用他们 .... 缺点: 运行速度 国内市场较小 中文资料匮乏 ...
分类:编程语言   时间:2021-04-26 14:08:44    阅读次数:0
C#数字转字符串保留2位小数
double a = 123456, b = 123456.1, c = 123456.12, d = 123456.123, e = 123456.126; Console.WriteLine(a.ToString("N")); //123,456.00 Console.WriteLine(b.T ...
分类:Windows程序   时间:2021-04-26 13:58:04    阅读次数:0
如何判断指定Class是否是基础数据类型或者是其包装类型
1. 判断是否是基础数据类型 /** * 判断是否是基础数据类型,即 int,double,long等类似格式 */ public static boolean isCommonDataType(Class clazz){ return clazz.isPrimitive(); } 2、 判断是否是 ...
分类:其他好文   时间:2021-04-26 13:54:00    阅读次数:0
python
# 每月将各分公司的业务情况汇总 再定时输出 import cx_Oracle from openpyxl.styles import Font import pandas as pd import openpyxl import time from email.mime.multipart imp ...
分类:编程语言   时间:2021-04-26 13:49:32    阅读次数:0
求出1~1000的所有完全数
完全数 : 其所有因子的的和等于该数(包括1,但是不包括该数字本身) package judgment;/** * 求1~1000的所有完全数 */public class Judgment { public static void main(String[] args) { for (int i ...
分类:其他好文   时间:2021-04-26 13:45:19    阅读次数:0
jvm源码解读--11 ldc指令的解读
写一个java文件 public static void main(String[] args) { String str1="abc"; String str2 ="abc"; String str3=new String("abc"); boolean b1= str1==str2; boole ...
分类:其他好文   时间:2021-04-26 13:44:32    阅读次数:0
动手-文字检测-PSENet
借助mmocr框架,测试几种算法的效果。 这是一个文字检测和文字识别库,集成了很多的模型,包括PSENet、PixelLink等等 安装参考 https://mmocr.readthedocs.io/en/latest/install.html (base) xuehp@haomeiya009:~/ ...
分类:Web程序   时间:2021-04-26 13:44:18    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!