Choose The Distance
Wind And Rain
Gua's Nest
  • HOME
  • ARCHIVES
  • CATEGORIES
  • TAGS
  • STORE
  • TRAVEL
  • HOME
  • ARCHIVES
  • CATEGORIES
  • TAGS
  • STORE
  • TRAVEL
  • 组胚实验考试整理

    1、中动脉 AND 中静脉 2、大动脉 3、心脏 4、胸腺 5、淋巴结 6、脾脏 7、食管 8、胃 9、小肠 10、大肠 11、肝脏 12、胰腺 13、器官 14、肺 15、肾 16、甲状腺 17、肾上腺 18、睾...
      2023-05-23  
    • Med 
     
    • Histology 
    Read more 
  • 人体解剖学资料

    复习提纲 英文单词 PNS 名词解释 讨论题
      2023-05-18  
    • Med 
     
    • Anatomy 
    Read more 
  • python期末王炸

    123##安装python第三方库pip install -i https://pypi.tsinghua.edu.cn/simple jiebapip install -i https://pypi.tsinghua.edu.cn/simple w...
      2023-05-08  
    • Programming 
     
    • Python 
    Read more 
  • python期末复习试卷

    12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667...
      2023-05-08  
    • Programming 
     
    • Python 
    Read more 
  • python基础知识

    12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667...
      2023-05-08  
    • Programming 
     
    • Python 
    Read more 
  • 神经系统知识大全

    1.神经系统的区分?组成反射弧的结构有哪些? 中枢神经系统 周围神经系统 反射弧结构:感受器、传入神经、中枢、传出神经、效应器 2.何谓灰质、白质、皮质、髓质、神经核、纤维束和神经? 灰质:在中枢神经系统内,神经元胞体及树突集聚的部位,色泽灰暗称- ...
      2023-05-18  
    • Med 
     
    • Anatomy 
    Read more 
  • python期末复习整理

    12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667...
      2023-05-07  
    • Programming 
     
    • Python 
    Read more 
  • python-cx-qbank

    1 C以下代码的输出结果是__________。x=12+3*((58)-14)//6print(x)• A、25.0B、24C、25D、652 A表达式3**25//6%7的计算结果是_______...
      2023-05-07  
    • Programming 
     
    • Python 
    Read more 
  • 爬取hitokoto并存到本地HTML文件

    12345678910111213141516171819202122import timeimport requestsstart_num = eval(input('define start_num:\n'))file_nam...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • min->hour:min

    123456789min_time = eval(input('please input you num(minute):\n'))hour = 0while True: if min_time >= 60 : ...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • Stapi&Imapi后台实现

    12345678910mode = eval(input('Input a num. 0.stapi OR 1.imapi\n'))start_num = eval(input('define start_num:\n&...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 指定项数输出斐波拉契数列

    123456789101112list0 = [1,1]terms = eval(input('斐波拉契数列的项数:'))for i in range(terms-2): list0.append(list0[-2]+lis...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 月收入调节税

    123456789101112income = eval(input('请输入月收入:'))if income <= 2000: tax = 0elif income > 2000 and income <...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • if-else实现注册功能

    1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465##op...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • format输出学生成绩

    1234567list1=[1,2,3,4] #stuidlist2=[98,67,89,80] #c-scorelist3=[100,90,83,62] #m-scorelist4=[90,98,100...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 直角坐标系两点求距离

    12345678print("A、B两点坐标分别为A(x1,y1)、B(x2,y2)")a=input("请输入x1:")b=input("请输入y1:")c=input("请输入...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 微博Json数据分析

    获取Json字典中值数量最多的项目。 123456789def getContent(key): comL = [] for item in ret: commentcnt = int(item[key]) c...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • try-except-else-finally

    if 只能处理一段代码,可读性不高 try-except-finally(二者必须要有一个) 1234567try: try_suite #监控这里的异常except Exception: except_suite #异常处理代码els...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 错误分析

    SyntaxError:解释器语法错误 NameError:尝试访问一个未申明的变量 TypeError 数据类型不匹配 KeyError:请求一个不存在的字典关键字 IOError:输入输出错误(打开的文件不存在) AttributeError: ...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • format方法

    <模板字符串>.format(<逗号分隔的参数>) "I'm {}, I'm {} years old.".format('Tom'...
      2023-05-06  
    • Programming 
     
    • Python 
    Read more 
  • 打开和读取Json文件

    123456789101112131415161718import osdef ReadJson(fn): retL = [] f = open(fn, encoding = 'utf-8') for line ...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • Finished My First College Final Test - Exhausted

    I have to put it in the front of the passage. ‘Finally! All ended!’ It’s ashamed to admit that during the winter holiday, I d...
      2023-03-08  
    • Weeks 
    Read more 
  • Azure-Redhat7.4-install

    First of all, it occurred to me that the package resource haven’t been installed. It said the system couldn’t find the packag...
      2023-04-24  
    • Web 
     
    • Linux 
    Read more 
  • What Is It and Why Happier

      2022-12-26  
    • Notes 
     
    • Psychology of Happiness 
    Read more 
  • Start reading original English books

    From today onwards, I will start reading original English books. This will not only help me to improve my English reading ski...
      2022-12-27  
    • Moments 
    Read more 
  • The pesky new coronavirus

    COVID-19This week I contracted COVID-19 and had a fever for 3 days straight. Each day the temperature was pretty much going t...
      2022-12-26  
    • Weeks 
    Read more 
  • 每一位数都是素数

    12345678910111213141516for n in range(100,1000): nstr=str(n) for s in nstr: ints=eval(s) if ints<2:...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 完数

    123456789for n in range(10,10000): st="" sum1=0 for i in range(1,n): if n%i==0: st=st+st...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 最小公倍数计算

    123456789m = int(input("Please input the first num:"))n = int(input("Please in put the second num:"))p = ...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 素数判断函数

    1234567def IsPrime(n): if n<2: return False for i in range(2,n): if n % i==0: return False ...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 单个数字求阶乘函数

    123456789def Factorial(n): sum1 = 0 for i in str(n): i = int(i) fact = 1 for j in range(2,i+1): ...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 随机取四位数并且输出四位降序数

    1234567891011121314151617import randomls=[]for i in range(30): x=random.randint(1000,9999) ls.append(x)print(ls)count=0...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • 互质

    12345678910111213141516for m in range(100,1000): guam = m nstr = str(m) n = nstr[::-1] if n[0] == '0': ...
      2023-04-24  
    • Programming 
     
    • Python 
    Read more 
  • Store

    Comment To Get Help
      2022-12-26
    Read more 
  • Cloudflare Apps

    Earlier issuesWhen I first used this feature it was on Cloudflare Pages and there was an error. The error was probably on the...
      2022-12-28  
    • Web 
     
    • Cloudflare 
    Read more 
  • Cloudflare Pages

    To begin with, I transferred all my static sites to Cloudflare Pages. Because I use Cloudflare as my CDN provider. So it woul...
      2023-03-05  
    • Web 
     
    • Cloudflare 
    Read more 
  • Github Pages

    After trying out dynamic servers, it was GitHub Pages that I used to build my website when I wanted to build some static webs...
      2022-12-28  
    • Web 
     
    • Github 
    Read more 
  • Hexo

    Wonderful!
      2022-12-28  
    • Web 
     
    • Hexo 
    Read more 
  • jsDelivr

    CDNCDN is a content delivery network built on top of the network, relying on edge servers deployed in various locations, thro...
      2022-12-28  
    • Web 
     
    • jsDelivr 
    Read more 
  • Rainbow Mall

    This thing cost me the first bucket of money in my life.
      2022-12-28  
    • Web 
     
    • Rainbow Mall 
    Read more 
  • Rocket Loader™

    TipsThis can cause loading problems on some sites, making some controls such as buttons not load properly or not respond when...
      2022-12-28  
    • Web 
     
    • Cloudflare 
    Read more 
  • Typecho

    WhatTypecho is an open source cross-platform blogging program developed by a Chinese team. It is built on PHP5 and supports m...
      2022-12-28  
    • Web 
     
    • Typecho 
    Read more 
  • Wordpress

    My firstThis is one of the first blogging systems I ever used. FunctionsIn general it is very easy to manage, from themes to ...
      2022-12-28  
    • Web 
     
    • Wordpress 
    Read more 
  • The Road To Websites

      2022-12-26  
    • Web 
     
    • Error 
    Read more 
© 2004 - 2023    Yao Lu
Powered by Hexo | Theme Keep v3.6.1