2018年11月9日

Git,Github安装及使用for windows

摘要: 一、git下载,下面是官网下载地址: 二、安装,安装时不要犹豫,不要迟疑,一直Next>就行了 三、git与github的关联 1.首先去github官网注册账户。下面是官网地址 https://github.com 2.本地配置用户名和邮箱 (1)在桌面空白处鼠标右键单击,选择Git Bash H 阅读全文

posted @ 2018-11-09 16:42 尚书房行走 阅读(2632) 评论(0) 推荐(2) 编辑

2018年10月6日

Python的if....else嵌套

摘要: score = 20if score >= 60: print("你已经及格") if score >= 80: print("你很优秀") else: print("你只是一般般")else: print("不及格") if score < 30: print("学渣") else: ... 阅读全文

posted @ 2018-10-06 15:30 尚书房行走 阅读(5603) 评论(0) 推荐(0) 编辑

Python的if....else

摘要: a = 5b = a ==1if b: print("说明a是1") print("说明a真的是1")else: print("说明a不是1")print("程序结束") 阅读全文

posted @ 2018-10-06 15:15 尚书房行走 阅读(158) 评论(0) 推荐(0) 编辑

导航