2018年11月6日
摘要: 根据点的坐标画出圆的内接三角形: 阅读全文
posted @ 2018-11-06 16:28 一杯明月 阅读(5092) 评论(0) 推荐(0) 编辑
摘要: 源自:https://blog.csdn.net/petermsh/article/details/78458585 1. 调用包函数绘制圆形Circle和椭圆Ellipse 2.用圆的参数方程画圆 以下源自:https://blog.csdn.net/qq_35882901/article/det 阅读全文
posted @ 2018-11-06 16:26 一杯明月 阅读(43080) 评论(0) 推荐(0) 编辑
摘要: 用quit()。 阅读全文
posted @ 2018-11-06 11:45 一杯明月 阅读(4696) 评论(0) 推荐(0) 编辑
摘要: 1.利用msgbox(单词messagebox的缩写)给出一个提示信息: import easygui as g reply=g.msgbox('This is a basic message box.', 'Title Goes Here') print(reply) #http://easygu 阅读全文
posted @ 2018-11-06 11:16 一杯明月 阅读(6454) 评论(0) 推荐(2) 编辑
摘要: try/except与其他语言相同,在python中,try/except语句主要是用于throw程序正常执行过程中出现的异常,如语法错(python作为脚本语言没有编译的环节,在执行过程中对语法进行检测,出错后发出异常消息)、数据除零错误、从未定义的变量上取值等;而try/finally语句则 阅读全文
posted @ 2018-11-06 10:53 一杯明月 阅读(15355) 评论(0) 推荐(1) 编辑
摘要: os.path.abspath(path) #返回绝对路径(包含文件名的全路径) os.path.basename(path) —— 去掉目录路径获取(带后缀的)文件名 os.path.dirname(path) —— 去掉文件名获取目录 os.path.split(path) —— 将全路径分解为 阅读全文
posted @ 2018-11-06 10:21 一杯明月 阅读(6836) 评论(0) 推荐(0) 编辑