2018-09-03 Day11-作業(yè)

最下方附上data.json文件內(nèi)容

  1. 提取data.json中的數(shù)據(jù)朽褪,將每條數(shù)據(jù)中的name、text幌绍、love和comment信息赘娄。并且保存到另外一個(gè)json文件中
import json
with open('./data.json','r',encoding='utf-8') as f:
    content = json.load(f)
name, text, love, comment = [],[],[],[]
for index in range(len(content['data'])):
    name.append(content['data'][index]['name'])
    text.append(content['data'][index]['text'])
    love.append(content['data'][index]['love'])
    comment.append(content['data'][index]['comment'])
info = {'name':name,'text':text,'love':love,'comment':comment}
with open('./info.json','w',encoding='utf-8') as f1:
    json.dump(info,f1)

#文件內(nèi)容太多了,不再這里展示了
  1. 統(tǒng)計(jì)data.json中comment數(shù)量超過(guò)1000的個(gè)數(shù)并且
import json
count = 0
with open('./data.json','r',encoding='utf-8') as f:
    content = json.load(f)
len1 = len(content['data'])
for index in range(len1):
    if int(content['data'][index]['comment']) > 1000:
        count += 1
print(count)


結(jié)果:
0
  1. 將data.json文件中所有點(diǎn)贊數(shù)(love)對(duì)應(yīng)的值超出1000的用k來(lái)表示故黑,例如1000修改為1k, 1345修改為1.3k
import json
with open('./data.json','r',encoding='utf-8') as f:
    content = json.load(f)
for index in range(len(content['data'])):
    str1 = (str(int(content['data'][index]['love']) / 1000)+'k')
    content['data'][index]['love'] = str1
with open('./data.json','w',encoding='utf-8') as f1:
    content1 = json.dump(content,f1)

#文件內(nèi)容太多了儿咱,不再這里展示了
  1. 寫(xiě)猜數(shù)字游戲,如果輸入有誤场晶,提示重新輸入混埠,直達(dá)輸入正確為止。比如:輸入數(shù)字的時(shí)候沒(méi)有按要求輸入诗轻,提示重新輸入
import random
while True:
    n = random.randint(1,100)
    try:
        n1 = int(input('輸入你想猜的答案:'))
    except ValueError:
        print('輸入錯(cuò)誤钳宪!請(qǐng)重新輸入!')
        continue
    if n1 < n:
        print('小了小了扳炬。吏颖。。')
        continue
    elif n1 > n:
        print('大了大了恨樟。半醉。。')
        continue
    elif n1 == n:
        print('恭喜你答對(duì)了劝术!')
        break
  1. 寫(xiě)學(xué)生管理系統(tǒng)的添加學(xué)生功能(數(shù)據(jù)需要本地化)缩多,要求除了保存學(xué)生的基本信息以外還要保存學(xué)生的學(xué)號(hào),但是學(xué)號(hào)需要自動(dòng)生成养晋,生成原則:
    添加第一個(gè)學(xué)生對(duì)應(yīng)的學(xué)號(hào)是:py001
    第二次添加的學(xué)生的學(xué)號(hào)是:py002
    ...
    如果前面的學(xué)生因?yàn)楦鞣N原因被移除了衬吆,那后面添加學(xué)生的時(shí)候原則不變,就是比如上次已經(jīng)添加到py012,那么前面不管有沒(méi)有刪除情況匙握,再次添加學(xué)生的學(xué)號(hào)是py013
import json

id = 0
student_dict = {'id':id,'dict1':[]}
try:
    with open('./stu_info.json','r',encoding='utf-8') as f1:
        content = json.load(f1)
        student_dict = content
        id = int(content['id'])
except:
    print('文件不存在!請(qǐng)先添加咆槽!')
while True:
    name = input('請(qǐng)輸入你要添加的學(xué)生姓名:')
    id += 1
    num = 'py'+'%03d'%id
    age = input('請(qǐng)輸入你要添加的年齡:')
    print('學(xué)號(hào)自動(dòng)生成為:py%03d'%id)
    print('添加成功!')
    student_info = {'name': name, 'id': num, 'age': age}
    student_dict['dict1'].append(student_info)
    student_dict['id'] = id
    n = input('輸入“y”繼續(xù)添加圈纺,“n”停止添加:')
    if n == 'y':
        continue
    elif n =='n':
        break
    else:
        print('輸入錯(cuò)誤秦忿!默認(rèn)停止添加麦射!')
        break
with open('./stu_info.json','w',encoding='utf-8') as f2:
    json.dump(student_dict,f2)


data.json內(nèi)容如下:

{
    "code": 200,
    "data": [
        {
            "bimageuri": "",
            "bookmark": "12",
            "cache_version": 2,
            "cai": "57",
            "cdn_img": "http://wimg.spriteapp.cn/ugc/2018/06/11/5b1d9b15aeb0b_1.jpg",
            "comment": "84",
            "create_time": null,
            "created_at": "2018-06-12 06:24:01",
            "ding": "557",
            "favourite": "12",
            "hate": "57",
            "height": "876",
            "image_small": null,
            "image0": "http://wimg.spriteapp.cn/ugc/2018/06/11/5b1d9b15aeb0b_1.jpg",
            "image1": "http://wimg.spriteapp.cn/ugc/2018/06/11/5b1d9b15aeb0b_1.jpg",
            "image2": "http://wimg.spriteapp.cn/ugc/2018/06/11/5b1d9b15aeb0b_1.jpg",
            "is_gif": false,
            "love": "557",
            "name": "龘靐龗齾齉爩虌麷灩韊",
            "original_pid": "0",
            "passtime": "2018-06-12 06:24:01",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2016/10/07/57f7b339ed872_mini.jpg",
            "repost": "23",
            "screen_name": "龘靐龗齾齉爩虌麷灩韊",
            "status": "4",
            "t": 1528755841,
            "tag": "",
            "text": "閑來(lái)無(wú)事看看直播,點(diǎn)開(kāi)個(gè)漂亮小姐姐……我特么………… ???",
            "theme_id": "58240",
            "theme_name": "搞笑圖片",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "10",
            "user_id": "13943553",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "440"
        },
        {
            "bimageuri": "",
            "bookmark": "3",
            "cache_version": 2,
            "cai": "31",
            "cdn_img": "http://wimg.spriteapp.cn/ugc/2018/08/06/5b67bdb075417_1.jpg",
            "comment": "134",
            "create_time": null,
            "created_at": "2018-08-07 07:12:02",
            "ding": "242",
            "favourite": "3",
            "hate": "31",
            "height": "333",
            "image_small": null,
            "image0": "http://wimg.spriteapp.cn/ugc/2018/08/06/5b67bdb075417_1.jpg",
            "image1": "http://wimg.spriteapp.cn/ugc/2018/08/06/5b67bdb075417_1.jpg",
            "image2": "http://wimg.spriteapp.cn/ugc/2018/08/06/5b67bdb075417_1.jpg",
            "is_gif": false,
            "love": "242",
            "name": "一葉珈藍(lán)",
            "original_pid": "0",
            "passtime": "2018-08-07 07:12:02",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/07/29/5b5d8d37ebac4_mini.jpg",
            "repost": "2",
            "screen_name": "一葉珈藍(lán)",
            "status": "4",
            "t": 1533597122,
            "tag": "",
            "text": "你的房子失火了灯谣,你只能選擇一樣?xùn)|西潜秋,你會(huì)救什么?",
            "theme_id": "44289",
            "theme_name": "互動(dòng)區(qū)",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "10",
            "user_id": "22675409",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "671"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0806/65c7599c-9904-11e8-a53c-0026b938a8ac_wpd.jpg",
            "bookmark": "2",
            "cache_version": 2,
            "cai": "26",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0806/65c7599c-9904-11e8-a53c-0026b938a8ac_wpd.jpg",
            "comment": "152",
            "create_time": null,
            "created_at": "2018-08-07 09:40:02",
            "ding": "301",
            "favourite": "2",
            "hate": "26",
            "height": "844",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0806/65c7599c-9904-11e8-a53c-0026b938a8ac_wpd.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0806/65c7599c-9904-11e8-a53c-0026b938a8ac_wpd.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0806/65c7599c-9904-11e8-a53c-0026b938a8ac_wpd.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0806/65c7599c-9904-11e8-a53c-0026b938a8ac_wpd.jpg",
            "is_gif": false,
            "love": "301",
            "name": "逍遙幫主阿紫",
            "original_pid": "0",
            "passtime": "2018-08-07 09:40:02",
            "playcount": "32559",
            "playfcount": "10447",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/07/20/5b51756073006_mini.jpg",
            "repost": "8",
            "screen_name": "逍遙幫主阿紫",
            "status": "4",
            "t": 1533606002,
            "tag": "",
            "text": "遇到這種情況胎许,你會(huì)怎么辦?",
            "theme_id": "55163",
            "theme_name": "主版塊",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "22714206",
            "videotime": 15,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0806/65c7599c-9904-11e8-a53c-0026b938a8ac_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "480"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0423/27706874_491.jpg",
            "bookmark": "178",
            "cache_version": 2,
            "cai": "7",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0423/27706874_491.jpg",
            "comment": "32",
            "create_time": null,
            "created_at": "2018-04-26 14:39:02",
            "ding": "277",
            "favourite": "178",
            "hate": "7",
            "height": "480",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0423/27706874_491.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0423/27706874_491.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0423/27706874_491.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0423/27706874_491.jpg",
            "is_gif": false,
            "love": "277",
            "name": "拽拽快樂(lè)視頻",
            "original_pid": "0",
            "passtime": "2018-04-26 14:39:02",
            "playcount": "4691",
            "playfcount": "123",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2017/10/10/59dca3c409d5d_mini.jpg",
            "repost": "78",
            "screen_name": "拽拽快樂(lè)視頻",
            "status": "4",
            "t": 1524724742,
            "tag": "",
            "text": "一組超贊的肩頸按摩教程!上班上學(xué)總是久坐蔑水,經(jīng)常會(huì)感到肩膀酸疼媳荒、頸椎僵硬。這組小動(dòng)作凝化,可以幫你緩解肩頸疼痛擎鸠,保護(hù)肩頸健康,遠(yuǎn)離頸椎苍等Α劣光!轉(zhuǎn)存!",
            "theme_id": "747",
            "theme_name": "健康養(yǎng)生",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "21161412",
            "videotime": 125,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0423/eabae7ca-46db-11e8-9e8e-1866daeb0df1_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "480"
        },
        {
            "bimageuri": "",
            "bookmark": "14",
            "cache_version": 2,
            "cai": "289",
            "cdn_img": "http://wimg.spriteapp.cn/ugc/2017/09/05/59aea3d8a5e87_1.jpg",
            "comment": "488",
            "create_time": null,
            "created_at": "2017-09-06 16:46:01",
            "ding": "1043",
            "favourite": "14",
            "hate": "289",
            "height": "5691",
            "image_small": null,
            "image0": "http://wimg.spriteapp.cn/ugc/2017/09/05/59aea3d8a5e87_1.jpg",
            "image1": "http://wimg.spriteapp.cn/ugc/2017/09/05/59aea3d8a5e87_1.jpg",
            "image2": "http://wimg.spriteapp.cn/ugc/2017/09/05/59aea3d8a5e87_1.jpg",
            "is_gif": false,
            "love": "1043",
            "name": "為你改變love",
            "original_pid": "0",
            "passtime": "2017-09-06 16:46:01",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2016/11/15/582b24d33dd0b_mini.jpg",
            "repost": "16",
            "screen_name": "為你改變love",
            "status": "4",
            "t": 1504687561,
            "tag": "",
            "text": "粉絲為趙麗穎連續(xù)簽到405天糟把,卻因男友生日斷簽绢涡,憤怒與男友分手!",
            "theme_id": "1381",
            "theme_name": "娛樂(lè)八卦",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "10",
            "user_id": "18996959",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "576"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2017/1011/59dcfa0fc2b31__b_39.jpg",
            "bookmark": "2213",
            "cache_version": 2,
            "cai": "63",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2017/1011/59dcfa0fc2b31__b_39.jpg",
            "comment": "103",
            "create_time": null,
            "created_at": "2017-10-12 14:43:02",
            "ding": "3390",
            "favourite": "2213",
            "hate": "63",
            "height": "600",
            "image_small": "http://wimg.spriteapp.cn/picture/2017/1011/59dcfa0fc2b31__b_39.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2017/1011/59dcfa0fc2b31__b_39.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2017/1011/59dcfa0fc2b31__b_39.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2017/1011/59dcfa0fc2b31__b_39.jpg",
            "is_gif": false,
            "love": "3390",
            "name": "吐嚎Video",
            "original_pid": "0",
            "passtime": "2017-10-12 14:43:02",
            "playcount": "38631",
            "playfcount": "1909",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2017/08/12/598f1e1119252_mini.jpg",
            "repost": "1467",
            "screen_name": "吐嚎Video",
            "status": "4",
            "t": 1507790582,
            "tag": "",
            "text": "1套按摩操遣疯,專(zhuān)治頸椎病雄可,治1個(gè)好1個(gè),頸椎不好的快存缠犀!",
            "theme_id": "58773",
            "theme_name": "安全與健康",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "19414702",
            "videotime": 213,
            "videouri": "http://wvideo.spriteapp.cn/video/2017/1011/59dcfa10159ec_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "1066"
        },
        {
            "bimageuri": "",
            "bookmark": "10",
            "cache_version": 2,
            "cai": "32",
            "cdn_img": "http://wimg.spriteapp.cn/ugc/2018/06/18/5b27cf614f34e_1.jpg",
            "comment": "71",
            "create_time": null,
            "created_at": "2018-06-19 22:36:02",
            "ding": "266",
            "favourite": "10",
            "hate": "32",
            "height": "4348",
            "image_small": null,
            "image0": "http://wimg.spriteapp.cn/ugc/2018/06/18/5b27cf614f34e_1.jpg",
            "image1": "http://wimg.spriteapp.cn/ugc/2018/06/18/5b27cf614f34e_1.jpg",
            "image2": "http://wimg.spriteapp.cn/ugc/2018/06/18/5b27cf614f34e_1.jpg",
            "is_gif": false,
            "love": "266",
            "name": "黑皮呲呲水",
            "original_pid": "0",
            "passtime": "2018-06-19 22:36:02",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/05/06/5aeeaafd46093_mini.jpg",
            "repost": "9",
            "screen_name": "黑皮呲呲水",
            "status": "4",
            "t": 1529418962,
            "tag": "",
            "text": "挑西瓜速成秘籍",
            "theme_id": "58240",
            "theme_name": "搞笑圖片",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "10",
            "user_id": "20208094",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "499"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0523/27984331_418.jpg",
            "bookmark": "316",
            "cache_version": 2,
            "cai": "34",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0523/27984331_418.jpg",
            "comment": "79",
            "create_time": null,
            "created_at": "2018-06-03 12:50:03",
            "ding": "714",
            "favourite": "316",
            "hate": "34",
            "height": "360",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0523/27984331_418.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0523/27984331_418.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0523/27984331_418.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0523/27984331_418.jpg",
            "is_gif": false,
            "love": "714",
            "name": "斜眼看你笑",
            "original_pid": "0",
            "passtime": "2018-06-03 12:50:03",
            "playcount": "26476",
            "playfcount": "2834",
            "profile_image": "http://wimg.spriteapp.cn/profile/20170512104036.jpg",
            "repost": "49",
            "screen_name": "斜眼看你笑",
            "status": "4",
            "t": 1528001403,
            "tag": "",
            "text": "全程都是梗啊数苫,郭德綱和于謙的搞笑相聲《戀愛(ài)進(jìn)行曲》,肚子笑的都疼了",
            "theme_id": "0",
            "theme_name": "",
            "theme_type": "0",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "20746603",
            "videotime": 904,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0523/a22085fe5e5711e89b0a842b2b4c75ab_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "640"
        },
        {
            "bimageuri": "",
            "bookmark": "0",
            "cache_version": 2,
            "cai": "12",
            "cdn_img": null,
            "comment": "17",
            "create_time": null,
            "created_at": "2018-04-09 09:11:49",
            "ding": "130",
            "favourite": "0",
            "hate": "12",
            "height": "0",
            "image_small": null,
            "image0": null,
            "image1": null,
            "image2": null,
            "is_gif": null,
            "love": "130",
            "name": "別敷衍_涐",
            "original_pid": "0",
            "passtime": "2018-04-09 09:11:49",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2016/10/21/5809b87b20383_mini.jpg",
            "repost": "1",
            "screen_name": "別敷衍_涐",
            "status": "4",
            "t": 1523236309,
            "tag": "",
            "text": "男辨液,身高182虐急,95年的。有房滔迈,每個(gè)月有房貸止吁,有車(chē)。人長(zhǎng)的還算行燎悍,不丑也不帥的那種敬惦,月收入一萬(wàn)。工作原因谈山,很少接觸女孩子俄删,所以單到現(xiàn)在。想找個(gè)男朋友,一起過(guò)日子的那種畴椰!",
            "theme_id": "10745",
            "theme_name": "搞笑段子",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "29",
            "user_id": "19535993",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "0"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2017/1002/59d1fd9211413__b.jpg",
            "bookmark": "127",
            "cache_version": 2,
            "cai": "61",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2017/1002/59d1fd9211413__b.jpg",
            "comment": "92",
            "create_time": null,
            "created_at": "2017-10-09 14:15:01",
            "ding": "1732",
            "favourite": "127",
            "hate": "61",
            "height": "854",
            "image_small": "http://wimg.spriteapp.cn/picture/2017/1002/59d1fd9211413__b.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2017/1002/59d1fd9211413__b.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2017/1002/59d1fd9211413__b.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2017/1002/59d1fd9211413__b.jpg",
            "is_gif": false,
            "love": "1732",
            "name": "我愛(ài)你小酒窩~",
            "original_pid": "0",
            "passtime": "2017-10-09 14:15:01",
            "playcount": "112971",
            "playfcount": "11221",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2017/03/25/58d62c488484f_mini.jpg",
            "repost": "332",
            "screen_name": "我愛(ài)你小酒窩~",
            "status": "4",
            "t": 1507529701,
            "tag": "",
            "text": "假期過(guò)后上班時(shí)的你臊诊,簡(jiǎn)直一摸一樣!",
            "theme_id": "0",
            "theme_name": "",
            "theme_type": "0",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "20005106",
            "videotime": 25,
            "videouri": "http://wvideo.spriteapp.cn/video/2017/1002/59d1fd922d0ea_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "480"
        },
        {
            "bimageuri": "",
            "bookmark": "18",
            "cache_version": 2,
            "cai": "28",
            "cdn_img": "http://wimg.spriteapp.cn/ugc/2018/08/05/5b65d25dcf7d7.gif",
            "comment": "71",
            "create_time": null,
            "created_at": "2018-08-05 09:42:01",
            "ding": "358",
            "favourite": "18",
            "hate": "28",
            "height": "223",
            "image_small": null,
            "image0": "http://wimg.spriteapp.cn/ugc/2018/08/05/5b65d25dcf7d7.gif",
            "image1": "http://wimg.spriteapp.cn/ugc/2018/08/05/5b65d25dcf7d7.gif",
            "image2": "http://wimg.spriteapp.cn/ugc/2018/08/05/5b65d25dcf7d7.gif",
            "is_gif": false,
            "love": "358",
            "name": "魯尼古拉斯",
            "original_pid": "0",
            "passtime": "2018-08-05 09:42:01",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2017/06/17/59451ec71ac4a_mini.jpg",
            "repost": "12",
            "screen_name": "魯尼古拉斯",
            "status": "4",
            "t": 1533433321,
            "tag": "",
            "text": "這么漂亮的眼睛見(jiàn)過(guò)沒(méi)有迅矛?仿佛看到兩顆璀璨的星辰",
            "theme_id": "56910",
            "theme_name": "一大波萌娃",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "10",
            "user_id": "20763203",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "227"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0518/24e4371c-5a87-11e8-a83c-1866daeb0df1_wpd.jpg",
            "bookmark": "38",
            "cache_version": 2,
            "cai": "8",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0518/24e4371c-5a87-11e8-a83c-1866daeb0df1_wpd.jpg",
            "comment": "3",
            "create_time": null,
            "created_at": "2018-05-20 09:09:01",
            "ding": "105",
            "favourite": "38",
            "hate": "8",
            "height": "1280",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0518/24e4371c-5a87-11e8-a83c-1866daeb0df1_wpd.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0518/24e4371c-5a87-11e8-a83c-1866daeb0df1_wpd.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0518/24e4371c-5a87-11e8-a83c-1866daeb0df1_wpd.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0518/24e4371c-5a87-11e8-a83c-1866daeb0df1_wpd.jpg",
            "is_gif": false,
            "love": "105",
            "name": "內(nèi)涵神評(píng)濕",
            "original_pid": "0",
            "passtime": "2018-05-20 09:09:01",
            "playcount": "2476",
            "playfcount": "85",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/04/21/5adaa0fba68f9_mini.jpg",
            "repost": "12",
            "screen_name": "內(nèi)涵神評(píng)濕",
            "status": "4",
            "t": 1526778541,
            "tag": "",
            "text": "排骨切塊妨猩,洗凈,冷水加蔥姜料酒焯水秽褒,打去浮沫壶硅,小火20分鐘,沖洗干凈销斟,控干水分庐椒,拍淀粉,七成油溫炸制金黃備用蚂踊。      鍋燒少許油约谈,半勺糖,半勺醋犁钟,適量鹽棱诱,半勺番茄醬,熬制粘稠涝动,少量勾芡迈勋,下入排骨翻炒均勻,撒芝麻醋粟,完成练链。",
            "theme_id": "123",
            "theme_name": "美食頻道",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "22368727",
            "videotime": 53,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0518/24e4371c-5a87-11e8-a83c-1866daeb0df1_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "720"
        },
        {
            "bimageuri": "",
            "bookmark": "71",
            "cache_version": 2,
            "cai": "42",
            "cdn_img": "http://wimg.spriteapp.cn/ugc/2018/03/18/5aadbc4f4d4f2.gif",
            "comment": "139",
            "create_time": null,
            "created_at": "2018-03-19 15:04:01",
            "ding": "943",
            "favourite": "71",
            "hate": "42",
            "height": "267",
            "image_small": null,
            "image0": "http://wimg.spriteapp.cn/ugc/2018/03/18/5aadbc4f4d4f2.gif",
            "image1": "http://wimg.spriteapp.cn/ugc/2018/03/18/5aadbc4f4d4f2.gif",
            "image2": "http://wimg.spriteapp.cn/ugc/2018/03/18/5aadbc4f4d4f2.gif",
            "is_gif": false,
            "love": "943",
            "name": "搞笑內(nèi)涵俠",
            "original_pid": "0",
            "passtime": "2018-03-19 15:04:01",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2017/03/01/58b6ed2126d85_mini.jpg",
            "repost": "124",
            "screen_name": "搞笑內(nèi)涵俠",
            "status": "4",
            "t": 1521443041,
            "tag": "",
            "text": "割完蛋蛋凿滤,一臉生無(wú)可戀的表情鹏控,好可憐啊",
            "theme_id": "0",
            "theme_name": "",
            "theme_type": "0",
            "themes": null,
            "top_cmt": null,
            "type": "10",
            "user_id": "19064947",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "182"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0817/5b763f570db28__b.jpg",
            "bookmark": "89",
            "cache_version": 2,
            "cai": "27",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0817/5b763f570db28__b.jpg",
            "comment": "124",
            "create_time": null,
            "created_at": "2018-08-18 20:05:02",
            "ding": "710",
            "favourite": "89",
            "hate": "27",
            "height": "480",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0817/5b763f570db28__b.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0817/5b763f570db28__b.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0817/5b763f570db28__b.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0817/5b763f570db28__b.jpg",
            "is_gif": false,
            "love": "710",
            "name": "全球領(lǐng)先在線視頻",
            "original_pid": "0",
            "passtime": "2018-08-18 20:05:02",
            "playcount": "23964",
            "playfcount": "7175",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/08/06/5b6742613dbe7_mini.jpg",
            "repost": "75",
            "screen_name": "全球領(lǐng)先在線視頻",
            "status": "4",
            "t": 1534593902,
            "tag": "",
            "text": "拳皇98中韓對(duì)決短绸,賞心悅目的操作",
            "theme_id": "55163",
            "theme_name": "主版塊",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "19634336",
            "videotime": 242,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0817/5b763f576bb4c_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "848"
        },
        {
            "bimageuri": "",
            "bookmark": "542",
            "cache_version": 2,
            "cai": "54",
            "cdn_img": null,
            "comment": "160",
            "create_time": null,
            "created_at": "2018-08-18 03:16:01",
            "ding": "1370",
            "favourite": "542",
            "hate": "54",
            "height": "0",
            "image_small": null,
            "image0": null,
            "image1": null,
            "image2": null,
            "is_gif": null,
            "love": "1370",
            "name": "神馬情況這是",
            "original_pid": "0",
            "passtime": "2018-08-18 03:16:01",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/03/21/5ab21157ebeaa_mini.jpg",
            "repost": "86",
            "screen_name": "神馬情況這是",
            "status": "4",
            "t": 1534533361,
            "tag": "",
            "text": "“我愛(ài)你”的經(jīng)典表達(dá)方式 :周星馳:我養(yǎng)你啊育苟!蘇軾:不思量较鼓,自難忘。黃偉文:余生請(qǐng)你指教宙搬。王家衛(wèi):那一刻笨腥,我很暖。夏目漱石:今晚月色真美勇垛。張學(xué)友:很想帶你去吹吹風(fēng)。瑪格麗特:我在床上士鸥,飯?jiān)阱伬锵泄隆7吨傺停壕迫氤钅c,化作相思淚。李白:郎騎竹馬來(lái)讼积,繞床弄青梅肥照。張愛(ài)玲:你還不來(lái),我怎敢老去勤众。錢(qián)武肅王:陌上花開(kāi)舆绎,可緩緩歸矣。方文山:天青色等煙雨们颜,而我在等你吕朵。刀郎:自你離開(kāi)以后,從此就丟了溫柔窥突。元鹋!:曾經(jīng)滄海難為水,除去巫山不是云阻问。張國(guó)榮:就讓我陪你唱一輩子戲梧税,不行嗎?王小波:你好哇称近,李銀河第队,見(jiàn)到你真高興。李之儀:只愿君心似我心刨秆,定不負(fù)相思意凳谦。柳永:衣帶漸寬終不悔,為伊消得人憔悴坛善。林夕:你是我這一生等了半世未拆的禮物晾蜘。李商隱:直道相思了無(wú)益,未妨惆悵是清狂眠屎。倉(cāng)央嘉措:世間安得雙全法剔交,不負(fù)如來(lái)不負(fù)卿。馮唐:春水初生改衩,春林初盛岖常,春風(fēng)十里,不如你葫督。納蘭性德:凄涼別后兩應(yīng)同,最是不勝清怨月明中竭鞍。魯迅:我愛(ài)子君,仗著她逃出這寂靜和空虛橄镜。卓別林:我可以選擇讓你看見(jiàn)偎快,也可以選擇堅(jiān)持不讓你看見(jiàn)。李宗盛:春風(fēng)再美也比不上你的笑洽胶,沒(méi)見(jiàn)過(guò)你的人不會(huì)明了晒夹。顧城:草在結(jié)它的種子,風(fēng)在搖它的葉子,我們站著丐怯,不說(shuō)話喷好,就十分美好。沈從文:我行過(guò)許多地方的橋读跷,看過(guò)許多次數(shù)的云梗搅,喝過(guò)許多種類(lèi)的酒, 卻只愛(ài)過(guò)一個(gè)正當(dāng)最好年齡的人效览。所以无切,你的“我愛(ài)你”怎么表達(dá)呢?",
            "theme_id": "63674",
            "theme_name": "原創(chuàng)段子手",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "29",
            "user_id": "17588230",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "0"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0406/5ac749108a488_wpd.jpg",
            "bookmark": "17",
            "cache_version": 2,
            "cai": "53",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0406/5ac749108a488_wpd.jpg",
            "comment": "19",
            "create_time": null,
            "created_at": "2018-04-13 06:51:01",
            "ding": "238",
            "favourite": "17",
            "hate": "53",
            "height": "640",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0406/5ac749108a488_wpd.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0406/5ac749108a488_wpd.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0406/5ac749108a488_wpd.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0406/5ac749108a488_wpd.jpg",
            "is_gif": false,
            "love": "238",
            "name": "胡成功導(dǎo)演",
            "original_pid": "0",
            "passtime": "2018-04-13 06:51:01",
            "playcount": "22274",
            "playfcount": "1435",
            "profile_image": "http://wx.qlogo.cn/mmopen/vi_32/PiajxSqBRaEKE3bXR0UdVibEMERmAcmXfr7UicpJPp09Xd8kpibU18lPoF8rK8wC36DL6zggo8Vhqib4QBZibBbepySA/0",
            "repost": "11",
            "screen_name": "胡成功導(dǎo)演",
            "status": "4",
            "t": 1523573461,
            "tag": "",
            "text": "有夢(mèng)想钦铺,有責(zé)任订雾!",
            "theme_id": "55163",
            "theme_name": "主版塊",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "21504912",
            "videotime": 50,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0406/5ac749108a488_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "356"
        },
        {
            "bimageuri": "",
            "bookmark": "8",
            "cache_version": 2,
            "cai": "6",
            "cdn_img": "http://wimg.spriteapp.cn/ugc/2018/04/16/5ad47be72e33b.gif",
            "comment": "10",
            "create_time": null,
            "created_at": "2018-04-19 07:36:01",
            "ding": "145",
            "favourite": "8",
            "hate": "6",
            "height": "211",
            "image_small": null,
            "image0": "http://wimg.spriteapp.cn/ugc/2018/04/16/5ad47be72e33b.gif",
            "image1": "http://wimg.spriteapp.cn/ugc/2018/04/16/5ad47be72e33b.gif",
            "image2": "http://wimg.spriteapp.cn/ugc/2018/04/16/5ad47be72e33b.gif",
            "is_gif": false,
            "love": "145",
            "name": "趣圖V",
            "original_pid": "0",
            "passtime": "2018-04-19 07:36:01",
            "playcount": null,
            "playfcount": null,
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2017/03/02/58b6feb82e30f_mini.jpg",
            "repost": "6",
            "screen_name": "趣圖V",
            "status": "4",
            "t": 1524094561,
            "tag": "",
            "text": "完全詮釋了,還沒(méi)開(kāi)始就已經(jīng)結(jié)束了",
            "theme_id": "17083",
            "theme_name": "爆笑Gif",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "10",
            "user_id": "20327111",
            "videotime": 0,
            "videouri": "",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "299"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0702/5b39fcb2216b4__b.jpg",
            "bookmark": "18",
            "cache_version": 2,
            "cai": "23",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0702/5b39fcb2216b4__b.jpg",
            "comment": "224",
            "create_time": null,
            "created_at": "2018-07-03 14:36:02",
            "ding": "817",
            "favourite": "18",
            "hate": "23",
            "height": "1024",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0702/5b39fcb2216b4__b.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0702/5b39fcb2216b4__b.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0702/5b39fcb2216b4__b.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0702/5b39fcb2216b4__b.jpg",
            "is_gif": false,
            "love": "817",
            "name": "白頭人間_",
            "original_pid": "0",
            "passtime": "2018-07-03 14:36:02",
            "playcount": "43504",
            "playfcount": "9083",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/04/28/5ae412c90ee7b_mini.jpg",
            "repost": "22",
            "screen_name": "白頭人間_",
            "status": "4",
            "t": 1530599762,
            "tag": "",
            "text": "老物件了矛洞,小時(shí)候的回憶啊洼哎。【我們都懷舊/活動(dòng)精選】",
            "theme_id": "55163",
            "theme_name": "主版塊",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "17071501",
            "videotime": 20,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0702/5b39fcb2379ab_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "576"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0506/6d701778-50d0-11e8-8743-1866daeb0df1_wpd.jpg",
            "bookmark": "52",
            "cache_version": 2,
            "cai": "12",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0506/6d701778-50d0-11e8-8743-1866daeb0df1_wpd.jpg",
            "comment": "20",
            "create_time": null,
            "created_at": "2018-05-06 16:00:07",
            "ding": "428",
            "favourite": "52",
            "hate": "12",
            "height": "640",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0506/6d701778-50d0-11e8-8743-1866daeb0df1_wpd.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0506/6d701778-50d0-11e8-8743-1866daeb0df1_wpd.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0506/6d701778-50d0-11e8-8743-1866daeb0df1_wpd.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0506/6d701778-50d0-11e8-8743-1866daeb0df1_wpd.jpg",
            "is_gif": false,
            "love": "428",
            "name": "我愛(ài)你小酒窩~",
            "original_pid": "0",
            "passtime": "2018-05-06 16:00:07",
            "playcount": "9478",
            "playfcount": "951",
            "profile_image": "http://wimg.spriteapp.cn/profile/large/2018/02/24/5a91895a832cd_mini.jpg",
            "repost": "101",
            "screen_name": "我愛(ài)你小酒窩~",
            "status": "4",
            "t": 1525593607,
            "tag": "",
            "text": "金毛:讓你天天狗肉湯沼本,狗肉湯噩峦,我不要面子的啊",
            "theme_id": "56939",
            "theme_name": "動(dòng)物成了精",
            "theme_type": "1",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "20005106",
            "videotime": 167,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0506/6d701778-50d0-11e8-8743-1866daeb0df1_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "360"
        },
        {
            "bimageuri": "http://wimg.spriteapp.cn/picture/2018/0310/9fb8d90c244a11e89d87842b2b4c75ab_wpd.jpg",
            "bookmark": "86",
            "cache_version": 2,
            "cai": "207",
            "cdn_img": "http://wimg.spriteapp.cn/picture/2018/0310/9fb8d90c244a11e89d87842b2b4c75ab_wpd.jpg",
            "comment": "383",
            "create_time": null,
            "created_at": "2018-03-13 07:45:02",
            "ding": "1197",
            "favourite": "86",
            "hate": "207",
            "height": "854",
            "image_small": "http://wimg.spriteapp.cn/picture/2018/0310/9fb8d90c244a11e89d87842b2b4c75ab_wpd.jpg",
            "image0": "http://wimg.spriteapp.cn/picture/2018/0310/9fb8d90c244a11e89d87842b2b4c75ab_wpd.jpg",
            "image1": "http://wimg.spriteapp.cn/picture/2018/0310/9fb8d90c244a11e89d87842b2b4c75ab_wpd.jpg",
            "image2": "http://wimg.spriteapp.cn/picture/2018/0310/9fb8d90c244a11e89d87842b2b4c75ab_wpd.jpg",
            "is_gif": false,
            "love": "1197",
            "name": "終結(jié)者繹",
            "original_pid": "0",
            "passtime": "2018-03-13 07:45:02",
            "playcount": "83204",
            "playfcount": "14741",
            "profile_image": "http://wimg.spriteapp.cn/profile/20170508150613.jpg",
            "repost": "204",
            "screen_name": "終結(jié)者繹",
            "status": "4",
            "t": 1520898302,
            "tag": "",
            "text": "兄弟,你是不是對(duì)帥有什么誤解抽兆?",
            "theme_id": "0",
            "theme_name": "",
            "theme_type": "0",
            "themes": null,
            "top_cmt": null,
            "type": "41",
            "user_id": "20730232",
            "videotime": 29,
            "videouri": "http://wvideo.spriteapp.cn/video/2018/0310/9fb8d90c244a11e89d87842b2b4c75ab_wpd.mp4",
            "voicelength": null,
            "voicetime": null,
            "voiceuri": null,
            "weixin_url": null,
            "width": "480"
        }
    ],
    "msg": "成功!"
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末识补,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子辫红,更是在濱河造成了極大的恐慌凭涂,老刑警劉巖,帶你破解...
    沈念sama閱讀 222,104評(píng)論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件贴妻,死亡現(xiàn)場(chǎng)離奇詭異切油,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)澎胡,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,816評(píng)論 3 399
  • 文/潘曉璐 我一進(jìn)店門(mén),熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)攻谁,“玉大人,你說(shuō)我怎么就攤上這事弯予∑莼拢” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 168,697評(píng)論 0 360
  • 文/不壞的土叔 我叫張陵锈嫩,是天一觀的道長(zhǎng)阁苞。 經(jīng)常有香客問(wèn)我困檩,道長(zhǎng)祠挫,這世上最難降的妖魔是什么那槽? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 59,836評(píng)論 1 298
  • 正文 為了忘掉前任,我火速辦了婚禮等舔,結(jié)果婚禮上骚灸,老公的妹妹穿的比我還像新娘。我一直安慰自己慌植,他們只是感情好甚牲,可當(dāng)我...
    茶點(diǎn)故事閱讀 68,851評(píng)論 6 397
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著蝶柿,像睡著了一般丈钙。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上交汤,一...
    開(kāi)封第一講書(shū)人閱讀 52,441評(píng)論 1 310
  • 那天雏赦,我揣著相機(jī)與錄音,去河邊找鬼芙扎。 笑死星岗,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的戒洼。 我是一名探鬼主播俏橘,決...
    沈念sama閱讀 40,992評(píng)論 3 421
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼圈浇!你這毒婦竟也來(lái)了寥掐?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書(shū)人閱讀 39,899評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤磷蜀,失蹤者是張志新(化名)和其女友劉穎召耘,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體蠕搜,經(jīng)...
    沈念sama閱讀 46,457評(píng)論 1 318
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡怎茫,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 38,529評(píng)論 3 341
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了妓灌。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片轨蛤。...
    茶點(diǎn)故事閱讀 40,664評(píng)論 1 352
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖虫埂,靈堂內(nèi)的尸體忽然破棺而出祥山,到底是詐尸還是另有隱情,我是刑警寧澤掉伏,帶...
    沈念sama閱讀 36,346評(píng)論 5 350
  • 正文 年R本政府宣布缝呕,位于F島的核電站澳窑,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏供常。R本人自食惡果不足惜摊聋,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 42,025評(píng)論 3 334
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望栈暇。 院中可真熱鬧麻裁,春花似錦、人聲如沸源祈。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 32,511評(píng)論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)香缺。三九已至手销,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間图张,已是汗流浹背锋拖。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,611評(píng)論 1 272
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留埂淮,地道東北人姑隅。 一個(gè)月前我還...
    沈念sama閱讀 49,081評(píng)論 3 377
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像倔撞,于是被迫代替她去往敵國(guó)和親讲仰。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,675評(píng)論 2 359

推薦閱讀更多精彩內(nèi)容

  • 1.文件操作 2.Json 3.python對(duì)json文件的支持 4.異常捕獲 a.程序出現(xiàn)某種異常痪蝇,但是不想因?yàn)?..
    nothingpy閱讀 786評(píng)論 0 2
  • Spring Cloud為開(kāi)發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見(jiàn)模式的工具(例如配置管理鄙陡,服務(wù)發(fā)現(xiàn),斷路器躏啰,智...
    卡卡羅2017閱讀 134,704評(píng)論 18 139
  • 提取data.json中的數(shù)據(jù)趁矾,將每條數(shù)據(jù)中的name、text给僵、love和comment信息毫捣。并且保存到另外一個(gè)...
    oxd001閱讀 94評(píng)論 0 0
  • 提取data.json中的數(shù)據(jù),將每條數(shù)據(jù)中的name帝际、text蔓同、love和comment信息。并且保存到另外一個(gè)...
    d4lx閱讀 98評(píng)論 0 0
  • 1蹲诀、java 集合概述 Set :無(wú)序斑粱、不可重復(fù)的集合。 List : 有序脯爪、重復(fù)的集合则北。 Queue:Java ...
    于坤YK閱讀 301評(píng)論 0 0