摘要:
本题目节选自国外某top50高校Python练习题库,重点在于我们返回try语句的方法,而不是题目给出的背景。假设我们写一个程序,可以将输入的身高厘米数转化为英寸,如果遇到了负数,字母,中文等则抛出异常,并输出“Only positive numeric inputs are accepted. P 阅读全文
摘要:
首先我们来看一个具有异常抛出功能的程序: def register(): username=input("please input your user name: ") if len(username)<6: raise Exception("the str must be over 6 place 阅读全文