摘要: https://blogs.msdn.microsoft.com/dsvc/2013/03/04/usage-of-net-collections-types-in-vbscript-is-not-supported-after-net-4-5/ 阅读全文
posted @ 2019-09-03 00:28 Huanxi 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1 # coding:utf-8 2 3 4 import numpy as np 5 import pandas as pd 6 7 # 1. 获得 Numpy 的版本信息 8 print(np.__version__) 9 print(pd.__version__) 10 11 # ===============================... 阅读全文
posted @ 2019-05-10 15:43 Huanxi 阅读(209) 评论(0) 推荐(0) 编辑
摘要: # coding:utf-8 import numpy as np import pandas as pd # Pandas 的数据结构:Pandas 主要有 # Series(一维数组), # DataFrame(二维数组), # Panel(三维数组), # Panel4D(四维数组), # PanelND(更多维数组)等数据结构。 # 其中 Series 和 DataFrame 应用的... 阅读全文
posted @ 2019-05-09 23:27 Huanxi 阅读(1180) 评论(0) 推荐(0) 编辑
摘要: # powershell 的学习 # 获得帮助相关的 # "Hello World" | Get-Member # 数据类型 # 如何定义变量 # - 以 $ 符号开头,可以保存任意的管道或者命令的结果到变量中供后续使用, # - 如果变量存了大量的数据,而不在使用,可以使 $null来释放这些内存空间. 1 # 环境变量: # 获得所有的环境变量 - Get-ChildItem en... 阅读全文
posted @ 2019-05-07 20:58 Huanxi 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1 ## **Conda 内容** 2 3 ### 激活 conda 内容 4 5 - 确认 conda 已安装 6 `conda --version` 7 8 - 更新 conda 版本 9 `conda update conda` 10 11 - 创建新环境 12 13 `conda create --name snowflakes biopython... 阅读全文
posted @ 2019-05-07 20:56 Huanxi 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 兰色幻想VBA数组入门教程10集1. 前言:不要把VBA数组想的太神秘,它其实就是一组数字而已。2. 数组的维数:Sub 数组示例() Dim x As Long, y As Long Dim arr(1 To 10, 1 To 3) '创建一个可以容下10行3列的数组空间 For x = 1 To 阅读全文
posted @ 2019-05-07 20:49 Huanxi 阅读(832) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Linq; using System.Linq.Expressions; using System.Runtime.InteropServices; namespace app { public abstract class Visitor { private readonly Expression node... 阅读全文
posted @ 2019-05-07 20:46 Huanxi 阅读(632) 评论(0) 推荐(0) 编辑
摘要: using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Linq; namespace app { /* Type Converter: Enumerable.AsEnumerable Quer... 阅读全文
posted @ 2019-05-07 20:45 Huanxi 阅读(2011) 评论(0) 推荐(0) 编辑
摘要: Where are cookies stored Cookie information is stored in the profile folder, in two files. Starting with Firefox 3.0 and SeaMonkey 2.0 the cookie info 阅读全文
posted @ 2016-12-07 21:16 Huanxi 阅读(137) 评论(0) 推荐(0) 编辑