摘要: import urllib.requestimport osdef url_open(url): '''open url and return source html code''' req = urllib.request.Request(url) ... 阅读全文
posted @ 2018-04-30 19:13 Siucaan 阅读(878) 评论(0) 推荐(0)
摘要: nargin 一般用在输入参数个数不确定或者有默认参数时,if nargin < 3 % 设置 end strcat() 这个函数用得很广,拼接各种名字,路径。拼接的每个对象必须是字符,数字要转为字符才能正确显示。s1 = 'Good';s2 = 'mo... 阅读全文
posted @ 2018-04-30 14:15 Siucaan 阅读(478) 评论(0) 推荐(0)