asd

电脑突然关机,教你如何恢复word文件内容

会有一股神秘感。 提交于 2019-12-09 16:02:57
是否遇见过这种情况,花费了半天写的资料,电脑突然崩溃关机了,文档没保存,要哭的心都有了。如何才能将未保存的文档恢复呢?你是否发现电脑中其实有个asd后缀的文件,现在就教你如何将asd文件恢复为word 工具/原料 word2010 asd文件 方法/步骤 首先你在你电脑的C:\Users\Administrator\AppData\Roaming\Microsoft\Word目录下面找到你的文件标题命名的asd文件,如下图所示哦 电脑突然关机,教你如何恢复word文件内容,asd 将该asd文件一定放到C:\Users\Administrator\AppData\Roaming\Microsoft\Word这个目录,然后用word2010打开 电脑突然关机,教你如何恢复word文件内容,asd 接着可以通过“文件--》信息”管理以前版本”--“恢复未保存的文档”,文档,然后另存为doc或者docx文件就可以了 电脑突然关机,教你如何恢复word文件内容,asd 注意一定要用word2010版本及以上的,因为word2007组件不全,无法恢复 电脑突然关机,教你如何恢复word文件内容,asd 待恢复的asd文件一定要保存在word2010能恢复的目录下面 即这个目录:C:\Users\Administrator\AppData\Roaming\Microsoft\Word

python3的hashlib库sha256、pbkdf2_hmac、blake2b基本用法

蹲街弑〆低调 提交于 2019-12-06 14:16:22
hashlib.sha256: import hashlib x = hashlib.sha256() x.update(b"asd") print("x_1 = " + x.hexdigest()) x = hashlib.sha256() x.update("asd".encode()) print("x_2 = " + x.hexdigest()) x = hashlib.sha256() x.update(b"a") x.update(b"s") x.update(b"d") print("x_3 = " + x.hexdigest()) y = hashlib.sha256(b"asd").hexdigest() print("y_1 = " + y) z = hashlib.new("sha256") z.update(b"asd") print("z_1 = " + z.hexdigest()) 运行结果: x_1 = 688787d8ff144c502c7f5cffaafe2cc588d86079f9de88304c26b0cb99ce91c6 x_2 = 688787d8ff144c502c7f5cffaafe2cc588d86079f9de88304c26b0cb99ce91c6 x_3 =

python字典的使用

大憨熊 提交于 2019-12-05 18:08:24
1 ''' 2 info={ 3 'qwe':'poi', 4 'asd':"lkj", 5 'zxc':"mnb" 6 } 7 print(info)#字典是无序的 8 print(info["qwe"])#输出 9 info['qwe']="QWE"#字典中有,则是修改 改 10 info['dfg']="hgf"#没有就是添加的 增 11 print(info) 12 #del info['asd']#删除 删 13 #info.pop('asd')#删除 14 #info.popitem() #随机删 15 print(info) 16 17 print(info.get('qwe'))# 查 18 19 print('dfg' in info)#判断字典中是否含有dfg 20 ''' 21 22 23 ''' 24 #多级字典的嵌套 25 mover={ 26 'china':{ 27 'qwe':['qwe','rty','yui'], 28 'aaa':['asd','dfg','sad'], 29 'bbb':['kk','gh','dd'] 30 }, 31 'japan':{ 32 '11':['22','345'], 33 '99':['88','56'] 34 }, 35 'usa':{ 36 'ASD':['SSS'], 37 'QWE':['GGG',

np的concatenate和pandas的groupby

与世无争的帅哥 提交于 2019-12-05 09:19:21
1. concatenate   concatenate函数可以实现对两个张量进行拼接,这个张量可以实一维向量,二维矩阵等等   1. 首先定义四个列表,然后用concatenate把他们拼接起来,这里我设axis=0 name = ['jack', 'ross', 'john', 'blues', 'frank', 'bitch', 'haha', 'asd', 'loubin'] age = [12, 32, 23, 4,32,45,65,23,65] married = [1, 0, 1, 1, 0, 1, 0, 0, 0] gender = [0, 0, 0, 0, 1, 1, 1, 1, 1] matrix = np.concatenate((name, age, married, gender), axis=0) print(matrix)   运行结果如下 C:\software\Anaconda\envs\ml\python.exe C:/学习/python/科比生涯数据分析/venv/groupy.py ['jack' 'ross' 'john' 'blues' 'frank' 'bitch' 'haha' 'asd' 'loubin' '12' '32' '23' '4' '32' '45' '65' '23' '65' '1' '0' '1' '1' '0'

css image max-width not working with Firefox / IE

匿名 (未验证) 提交于 2019-12-03 08:52:47
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Here's a JsFiddle . HTML : <meta name="viewport" content="width=device-width, initial-scale=1,minimum-scale=1, maximum-scale=1"> <div data-role="page" > <div id="contentwrap"> <div id="content" data-role="content"> <img width="300" src="http://upload.wikimedia.org/wikipedia/commons/f/f1/Ski_trail_rating_symbol_red_circle.png" /> asdad asd asd asd sadadada ad sad asd asd asd asd sadasdaad adsa dasd sa </div> </div> </div> CSS : html, body { height: 100%; } #contentwrap { display: table; height: 100%; max-width: 500px; margin: 0 auto; position

Printing pointers in C

匿名 (未验证) 提交于 2019-12-03 02:14:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I was trying to understand something with pointers, so I wrote this code: #include <stdio.h> int main(void) { char s[] = "asd"; char **p = &s; printf("The value of s is: %p\n", s); printf("The direction of s is: %p\n", &s); printf("The value of p is: %p\n", p); printf("The direction of p is: %p\n", &p); printf("The direction of s[0] is: %p\n", &s[0]); printf("The direction of s[1] is: %p\n", &s[1]); printf("The direction of s[2] is: %p\n", &s[2]); return 0; } When compiling it with gcc I get these warnings: $ gcc main.c -o main-bin -ansi

解决:com.alibaba.fastjson.JSONException: parse number key errorpos 3, json

匿名 (未验证) 提交于 2019-12-03 00:37:01
在解析JSON的时候,除了 代码: public static void testMe() { Map map = new HashMap(); map.put("1", "2"); map.put("weq", "asd"); map.put("qw", ""); List list = new ArrayList(); list.add(map); list.add(map); list.add(null); String str1 = String.valueOf(list); System.out.println(String.valueOf(list)); List ss = JSON.parseObject(str1,List.class); } 报错信息: Exception in thread "main" com.alibaba.fastjson.JSONException: parse number key errorpos 3, json : [{1=2, weq=asd, qw=}, {1=2, weq=asd, qw=}, null] at com.alibaba.fastjson.parser.DefaultJSONParser.parseObject(DefaultJSONParser.java:295) at com.alibaba.fastjson

asd

孤者浪人 提交于 2019-12-02 20:17:48
asd 来源: https://www.cnblogs.com/xxffxx/p/11762492.html

列表

爷,独闯天下 提交于 2019-12-02 06:25:38
1 a = ['asd','在','@#$',12,0.12] #代码中['asd','在','@#$',12,0.12]为列表 中括号里的数字或字符为元素,除数字之外其他字母、字符或文字需要加引号,每个元素用逗号隔开 2 print(a) #打印变量a 从列表取出单个元素 来源: https://www.cnblogs.com/minghaoAQ/p/11734327.html