shell 笔记 shell 笔记 shell 笔记 通配符 没有 '.' [Aa] 表示 A 或者 a ? 表示任意字符 * 表示任意字符串 IFS data='name, sex, rollno, location' oldIFS=$IFS IFS=', ' for i in $data; do ...
分类:
系统相关 时间:
2016-06-21 15:27:15
阅读次数:
305
python学习笔记7-函数返回值使用return指定isNum()的函数返回值是true或者false,[root@localhost~]#vimreturn.py#!/usr/bin/pythonimportosimportsysdefisNum(s):ifs.isdigit():returnTruereturnFalseforiinos.listdir(‘/proc‘):ifisNum(i):printi
分类:
编程语言 时间:
2016-06-20 00:53:15
阅读次数:
182
import java.util.Scanner; public class ifs{ public static void main(String args[]){ Scanner in=new Scanner(System.in); System.out.println("请问你的性别是(男或女 ...
分类:
编程语言 时间:
2016-06-13 23:31:04
阅读次数:
202
import java.util.*;public class ifs { public static void main(String args[]){ Scanner in=new Scanner(System.in); System.out.println("请输入成绩"); int A=in ...
分类:
编程语言 时间:
2016-06-13 21:52:27
阅读次数:
214
IFS 算法代码 function IFS_draw(M,p) N=300000; for k=1:length(p); eval(['a',num2str(k),'=reshape(M(',num2str(k),',:),2,3);']); end xy=zeros(2,N); pp=meshgr... ...
分类:
编程语言 时间:
2016-05-24 06:54:33
阅读次数:
267
if-statements can add serious complexity and beg for refactoring. You can use polymorphic functions to simplify your ifs and dynamically call the appr ...
分类:
编程语言 时间:
2016-04-24 06:07:13
阅读次数:
139
你咋python做判断的时候经常看到这几种情况ifTrue:ifs:ifkeyisnotNone:ifnots:等这样的判断理解1空是一个数据类型的无如s=‘‘l=[]d={}t=()以上都是表示无元素In[33]:s=‘‘
In[34]:ifs:
....:print‘s字符串不为空‘
....:else:
....:print‘s字符串为空‘
....:
s字符串为空常用,判..
分类:
编程语言 时间:
2016-04-23 23:12:18
阅读次数:
333
总结一下whilereadline与for循环的区别(白话)都是读取文件whilereadline以\n为分割符,而for是以空格为分隔符还有一个需要注意的是从windos拿过来的文件默认行尾都是以\r结尾的,如果不转换linux/unix下就会以为是一行,所以拿过来需要转换一下。还有一个参数IFS是设置分割符..
分类:
其他好文 时间:
2016-04-01 06:38:48
阅读次数:
175
the canonical way to read one line of input with the read builtin is: 如: IFS=',' read -ra DEPS <<< ${dependencies} 转自: http://unix.stackexchange.com
分类:
其他好文 时间:
2016-03-13 17:23:09
阅读次数:
558
- (NSString *)fetchSSIDInfo{ NSString *ssid = nil; NSArray *ifs = (__bridge_transfer id)CNCopySupportedInterfaces(); for (NSString *ifnam in ifs) { .....
分类:
移动开发 时间:
2015-12-24 10:28:17
阅读次数:
179