上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 86 下一页
摘要: 一、python变量特点 python是弱类型语言,无需声明变量可以直接使用并且变量的数据类型可以动态改变 二、变量命名规则 1.不能使用python关键字 2.不能数字开头 3.不能包含空格 4.不能包含# 5.不建议使用内置函数作为变量名 **语句块的缩进 条件或者循环组成的语句块中,块中的每一 阅读全文
posted @ 2019-02-01 14:27 富坚老贼 阅读(331) 评论(0) 推荐(0)
摘要: 安装 官网 https://www.python.org/ Windows x86 web-based installer 在线安装 Windows x86 executable installer 离线安装 x86-64 64位软件 配置环境变量 path下添加 python安装路径 查看版本号: 阅读全文
posted @ 2019-02-01 14:20 富坚老贼 阅读(677) 评论(0) 推荐(0)
摘要: 从上往下顺序执行,定义的方法和类要写在调用之前, 如果有 if __name__ == '__main__' 改方法所在的文件作为启动文件时会被调用,如果作为模块被调用时不会被执行。 阅读全文
posted @ 2019-02-01 09:34 富坚老贼 阅读(348) 评论(0) 推荐(0)
摘要: 一、像素 android 常用单位 px、dp、sp dp和sp只与屏幕的物理尺寸有关 dp和sp的区别: sp会随着系统字体的大小而改变,通常用来设置字体大小。dp不会随系统设置的字体改变 dp和px换算:设备的像素密度决定了dp和px的换算, 当密度为2时, 1pd=2px 在布局中,除了文字使 阅读全文
posted @ 2019-01-24 11:36 富坚老贼 阅读(246) 评论(0) 推荐(0)
摘要: 一、Webapi的接口返回值类型 主要有四种类型 :void,HttpResponseMessage,IHttpActionResult,其他 1. void [HttpGet] public void GetNone() { } 返回空,状态码204 2.HttpResponseMessage 表 阅读全文
posted @ 2019-01-18 14:43 富坚老贼 阅读(917) 评论(0) 推荐(0)
摘要: https://www.getpostman.com/ 阅读全文
posted @ 2019-01-18 08:20 富坚老贼 阅读(213) 评论(0) 推荐(0)
摘要: gpedit.msc 家庭版默认是打不开的 @echo off pushd "%~dp0" dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List 阅读全文
posted @ 2019-01-17 16:15 富坚老贼 阅读(207) 评论(0) 推荐(0)
摘要: //ODP.NET Managed https://www.oracle.com/database/technologies/appdev/dotnet/odp.html 1.NUGet下载 2.下载 Oracle Developer Tools for Visual Studio https:// 阅读全文
posted @ 2019-01-17 10:28 富坚老贼 阅读(789) 评论(0) 推荐(0)
摘要: https://www.iconfont.cn/ 箭头 20 图标 26 阅读全文
posted @ 2019-01-14 11:10 富坚老贼 阅读(148) 评论(0) 推荐(0)
摘要: 一、 主题对应位置 1.colorPrimary 应用的主要色调,actionBar默认使用该颜色,Toolbar导航栏的底色 2.colorPrimaryDark 应用的主要暗色调,statusBarColor默认使用该颜色 3.statusBarColor 状态栏颜色,默认使用colorPrim 阅读全文
posted @ 2019-01-14 10:22 富坚老贼 阅读(162) 评论(0) 推荐(0)
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 86 下一页