What is the 2018 most noteworthy cryptocurrency?

The current cryptocurrency market is very hot and everyone wants to make a lot of money here. But at the same time, the risk is very big. When you want to invest but you don’t know which cryptocurrenc...
分类: 其他 发布时间: 07-07 23:20 阅读次数: 0

How did Altcoins dig?

1. SOLO miningThe first thing to know is that not all cryptocurrencies are suitable for SOLO mining. For video gamers, if you use SOLO to mine, you may have less than one in 10 years. So finding a low...
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

Cryptastic currency prices have been unstable due to what factors?

The biggest problem with cryptocurrency is price instability. No one can predict how it will go next. Even by 2019, its price trend is still unpredictable.In 2009, Nakamoto issued the world’s first cr...
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

Why does Bitcoin keep falling?

According to Bitcoin quotes on the citicoins website, bitcoin prices have been falling for a while, and have fluctuate more than 500 US dollars within a few days. In view of this, let's take a look at...
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

练习3-8 查询水果价格(15 分)

给定四种水果,分别是苹果(apple)、梨(pear)、桔子(orange)、葡萄(grape),单价分别对应为3.00元/公斤、2.50元/公斤、4.10元/公斤、10.20元/公斤。 首先在屏幕上显示以下菜单: [1] apple [2] pear [3] orange [4] grape [0] exit 用户可以输入编号1~4查询对应水果的单价。当连续查询次数超过5次时,程序应自动退出查询;不到5次而用户输入0即退出;输入其他编号,显示价格为0。 输入格式: 输入在一行中给出用户连续
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

day05-集合

l = [1,2,3,3,3,44,4,4,1] print(set(l)) s = set() s = {1,2,3,4} def my(name,sex='男'): #形式参数 print('hahaha',name) return name my('111')#实际参数 def read_file(file_name): with open(file_name,encoding='utf-8') as f: return f.re
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

go语言爬取椎名真白

单任务版: package main import ( "net/http" "regexp" "io/ioutil" "os" "strconv" "time" "fmt" "runtime" ) func get_mashiro(link,rule,target string)[]string{ res,_:=http.Get(link) defer res.Body.Close() page_content,_:= ioutil.ReadAll(res.Body
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

python 函数式编程尾递归优化 day16

函数编程的特征: 1不可变:不用变量保存状态,不修改变量 #非函数式 a = 1 def incr_test1(): global a#一旦更改全局变量后后面再调用a就容易乱 a += 1 return a incr_test1() print(a) def bar(): print('from bar') def foo(): print('from foo') return bar n = foo() n() return可以返回任何数值,包
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

day05-内置函数

# print(max(range(1,28))) # print(min(range(28))) # print(sum(range(1,101))) msg = 'hello' # print(dir(msg)) # res = sorted([2,3,1,2,3],reverse=True) #加上reverse就是降序排列了 # print(res) # res = eval('[1,2,3,4,5]')#执行python代码,只能执行简单的python代码,1+1 a=1 # ex
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

python 自动录屏初步实现

偶尔需要用python实现录屏并导出视频,随便写了一个简单的代码。 大概思路是先每隔一段时间截屏,然后将截屏图片变成视频导出。 1 # -*- coding: cp936 -*- 2 from PIL import ImageGrab 3 import time,os,cv2 4 import numpy as np 5 def releasevideo(): 6 path=os.getcwd()+'\\picture\\' 7 filelist=os.listd
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

Linux简篇

1 Linux开山篇 1.1 Linux的学习方向 Linux运维工程师:服务器的规划、调试优化、日常监控、故障处理、数据备份、日志分析、服务器瘫痪,要立即启动。 Linux嵌入式工程师:熟练掌握Linux下各种驱动程序的开发,还有就是在嵌入式系统中进行程序开发。 Linux下开发项目:将JavaEE项目、大数据项目等部署在Linux服务器上。 1.2 Linux的应用领域 个人桌面领域的应用:个人桌面领域一直是Linux应用最为薄弱的环节,传统Linux由于界面简单、操作复杂、应用软件较少的
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

《算法图解》之选择排序

讲述内存中的基础数据结构,数组擅长找元素,链表擅长找位置,为了适应对数据不同的操作要求,应当灵活使用。 1. 内存的工作原理 计算机内存犹如有很多抽屉的柜子. 2. 数组和链表 数组中元素的位置称为索引 元素xx位于索引xx处 数组与链表不同操作对应的时间复杂度 3. 选择排序 定义:遍历这个数组,取出最大的元素添加到新数组中并在元数组中删除这个最大元素,再次遍历这个数组...直到原数组为空 Python实现选择排序 def findSmallest(arr): smallest =
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

day05-日期相关

import time #时间戳 从unix元年开始到现在过的秒数 #格式化好的时间 2018-07-01 #时间元组, print(int(time.time()))#获取当前时间戳 print(time.strftime('%Y%m%d%H%M%S')) print(24*60*60*3) print(time.gmtime()) #把时间戳转成时间元祖,如果不传时间戳,那么取的是标准时区的时间 print(time.localtime(1530436245 - 259200))#把
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

在加密货币市场你是如何选出优质项目?

作为一个合格的投资者,你肯定要自身具备一定的能力。真正懂投资的人会花很多时间去寻找最佳的投资项目,在这个过程中我总结出了很多应该遵守的规则和建议,来选出优质的项目。                                   1.足够了解它在加密货币市场,一个项目,最基本的就是一份白皮书,一个简单的网站。然后再稍微做些宣传就可以找来一笔巨额的投资资金。在目前的加密货币市场中,宣传似乎比技术...
分类: 其他 发布时间: 07-07 23:19 阅读次数: 0

Altcoins' Mad Road

In 2017, cryptocurrencies blew up a storm in the global economy. With its turbulent tide, almost no one can keep calm. Even those who do not have cryptocurrencies are eager to know what changes the cr...
分类: 其他 发布时间: 07-07 23:18 阅读次数: 0

What is the best investment now?

The answer is of course the cryptocurrency, and the cryptocurrency market is now hot. The rise of blockchain technology, the emergence of various projects, the choice of investment, and the profit gai...
分类: 其他 发布时间: 07-07 23:18 阅读次数: 0

How to analyze a blockchain project in-depth?

As an ordinary investor, missed a good investment project because of lack of time, energy and expertise. It is still difficult to analyze a blockchain project, and the white papers of many projects ar...
分类: 其他 发布时间: 07-07 23:18 阅读次数: 0

Is it OK to sell Bitcoin, Litecoin, and Ethereum now?

Let us use facts to prove this problem.On November 5, 2017, data from the citicoins website showed that the Bitcoin price was $7,598 at night, marking the arrival of the Bitcoin era. Bitcoin has been ...
分类: 其他 发布时间: 07-07 23:18 阅读次数: 0

How to learn cryptocurrency?

Let me talk about the history of cryptocurrencies.1998–2009There have been attempts to use encryption technology to protect the online currency of the ledger. Two examples are B-Money and Bit Gold. Th...
分类: 其他 发布时间: 07-07 23:17 阅读次数: 0

What is Bitcoin? How is its future?

What is bitcoin?The concept of Bitcoin (BTC) was originally proposed by Nakamoto in 2009. Its open source software, designed according to Nakamoto's ideas, is also a P2P network. Bitcoin is a digital ...
分类: 其他 发布时间: 07-07 23:17 阅读次数: 0
今日推荐