码迷,mamicode.com
首页 >  
搜索关键字:elif    ( 966个结果
Python基础教程系列:八、条件与循环
其实作为条件判断语句或者循环语句,我们在前面已经多多少少涉及了一些,现在我们再做一些补充或者把几个要注意的地方说一下。主要有以下常用语句:if、while、for,以及相互搭配使用的else、elif、break...
分类:编程语言   时间:2015-02-01 02:04:47    阅读次数:265
SHELL脚本的语法知识——流程控制
①if-elif-elif-else-fi if-fi ` if(($a > 30));then echo $a;fi ` or ` if [ $a -gt 30 ];then echo $a;fi ` if-else-fi ` if(($a = 30));then echo $a;...
分类:系统相关   时间:2015-01-30 17:32:11    阅读次数:128
python学习小结2:if和while控制语句
if语句if语句中,代码块是按缩进的空格数量来判断的,也就是说空格数量一致的相邻行会被当作一个代码块,当if的条件成立的时候它就会得到执行。x = 100if x > 50: print 'x is high, ' print 'and high up in the sky!'elif ...
分类:编程语言   时间:2015-01-26 13:13:14    阅读次数:165
Python学习日记[1]
Day1:输入输出语句:input、print控制语句:if、else、elif…循环语句:for(类似于C#里面的foreach),while…type(), isinstance()…data type:int, float, bool, str…`operator:**, //,…列表:一个打...
分类:编程语言   时间:2015-01-25 11:06:54    阅读次数:219
Python 不同数据类型比较
temp = '32'if temp > 85: print "Hot"elif temp > 62: print "Comfortable" else: print "Cold" 结果输出为Hot.Why?Essentially, "...the choice whether one ...
分类:编程语言   时间:2015-01-23 00:39:03    阅读次数:311
LinuxShell脚本编程基础5--数值,字符串,文件状态测试,((..))和[[..]]的使用
1、数值比较! /bin/bashecho "enter a score:"read num1if [ $num1 -ge 80 ]then echo "Very Good"elif [ $num1 -lt 80 -a $num1 -ge 60 ]then echo "Good"else echo ...
分类:系统相关   时间:2015-01-22 12:53:09    阅读次数:230
Python学习:if语句
先举例: age = 20 if age >= 18 : print 'Adult' elif age = 18: ...
分类:编程语言   时间:2015-01-20 20:37:45    阅读次数:215
IOS中的预编译指令的初步探究
目录 文件包含 #include #include_next #import 宏定义 #define #undef 条件编译 #if #else #endif #if define #ifdef #ifndef #elif 错误、警告处理 ...
分类:移动开发   时间:2015-01-20 15:22:42    阅读次数:514
Vuforia点击屏幕自动对焦,过滤UGUI的按钮
//点击屏幕自对对焦#if UNITY_EDITOR if(!EventSystem.current.IsPointerOverGameObject()&&Input.GetMouseButtonUp(0))#elif UNITY_ANDROID || UNITY_IP...
分类:其他好文   时间:2015-01-19 10:48:19    阅读次数:214
C#预处理器指令
原文:C#预处理器指令 C#中的预处理器指令 目录 1.#define 和 #undef 2.#if、#elif、#else 和#endif 3.#warning 和 #error 4.#region 和#endregion 5.#line 6. #pragma C#中有许多名为“预处理器指令”的命...
分类:Windows程序   时间:2015-01-07 09:18:11    阅读次数:170
966条   上一页 1 ... 89 90 91 92 93 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!