码迷,mamicode.com
首页 >  
搜索关键字:print    ( 43532个结果
Python-numpy基础
numpy库的基本操作 import numpy as np import math #创建数组 a=np.arange(10) print(a) print(type(a)) #对数组里面的元素开平分 b=[3,4,9] #定义结果列表 result=[] #遍历列表 for i in b: pr ...
分类:编程语言   时间:2021-06-10 18:30:37    阅读次数:0
JavaSE: PrintStream类 和 PrintWriter类
PrintStream类 <1> 基本概念 java.io.PrintStream:用于更加方便地打印各种数据内容 <2> 常用的方法 方法声明 功能介绍 PrintStream (OutputStream out) 根据参数指定的引用来构造对象 void print(String s) 用于将参数 ...
分类:编程语言   时间:2021-06-10 18:15:46    阅读次数:0
深入理解ES8的新特性SharedArrayBuffer
简介 ES8引入了SharedArrayBuffer和Atomics,通过共享内存来提升workers之间或者worker和主线程之间的消息传递速度。 本文将会详细的讲解SharedArrayBuffer和Atomics的实际应用。 Worker和Shared memory 在nodejs中,引入了 ...
分类:其他好文   时间:2021-06-10 18:13:23    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 18:03:42    阅读次数:0
numpy模块
#numpy模块学习 ###前言 Numpy库支持高级大量的维度数组与矩阵运算,Numpy同时也对数组运算提供大量的数学函数,对于大量计算运行效率极好,是大量机器学习框架的基础库 ###常用属性与方法 >>> import numpy as np # 生成行向向量 >>> A = np.array( ...
分类:其他好文   时间:2021-06-08 23:42:33    阅读次数:0
实验六
实验任务一: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char n ...
分类:其他好文   时间:2021-06-08 23:29:04    阅读次数:0
多进程的调用(multiprocessing.Process)
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:系统相关   时间:2021-06-08 23:20:39    阅读次数:0
给没有列名的dataframe加上列名
test_data = pd.read_csv('news_data.csv', encoding='utf8',header=None) test_data.columns=['id','content'] print(test_data) 主要就是header=None 以及columns ...
分类:其他好文   时间:2021-06-08 22:50:08    阅读次数:0
python selenium 获取xlink元素内容
for link in driver.find_elements_by_css_selector("tr:nth-child(1) > td.taskStatus use"): assert_status = link.get_attribute('xlink:href') print(assert ...
分类:编程语言   时间:2021-06-07 20:49:35    阅读次数:0
python解压zip文件
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:编程语言   时间:2021-06-07 20:42:48    阅读次数:0
43532条   上一页 1 ... 9 10 11 12 13 ... 4354 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!