2010年9月7日火曜日

リストとかタプルとか

前回、コマンドを実行するために格納する領域として「リスト」の一種であるタプルを使いました。
これ、Lisp由来の機能と聞きますが、まあ、Pythonを強力なものとしているひとつの理由でもあるデータ構造なんです。

どのくらい強力かというと、気になる事務のあのコのおっぱいに触れるかも知れないくらい強力なデータ構造なんですよ。(無理です)
ちなみに、詳細な説明はこの辺にあります。
あと、この辺も参照しとくといいかも知れません。

ある値の連続した構造をもつデータをPythonで「リスト」と呼びます。
この、「値が連続している」ということが重要で、例えばfor文なんかで一括でループ処理をする場合に便利だったりします。
まあ、Pythonの場合には、このリスト構造を処理するための、かなり強力な機能があるのですが、ま、それはまた後ほどってことで。

なんで、Pythonリストが強力かというと、「変数の連続したもの」であるからです。
Pythonの変数は四次元ポケットである、と説明しました。何でも入るんです。その何でも入るのが、連続して繋がってるのがリストなんですね。
データを表現するのに、これほど「都合のいい」入れ物は他にないと思うんですよ。
もう、なんでも入ります。
リストの中にリストだって入れられるわけです。

そう、先日のプログラム構造のこの部分が、リストの中にリストが入った入れ子の状態ですね。

#インストールコマンド群
installCommands=(
("gksudo add-apt-repository ppa:khf03353/ppa-kaorin","gksudo apt-get update",'gksudo "apt-get -y install mikutube"'),    #一つめのチェックボックスのコマンド群
("gksudo add-apt-repository ppa:khf03353/ppa-kaorin","gksudo apt-get update",'gksudo "apt-get -y install mikukabe"'),    #二つめのチェックボックスのコマンド群
("gksudo add-apt-repository ppa:khf03353/ppa-kaorin","gksudo apt-get update","gksudo "apt-get -y install mikukabe"')     #三つめ以降は、このように増やしていく
)

一つめのチェックボックスに対応する項目としてinstallCommand[0]として、コマンド群を取得していましたが、これは2次元のリストなので、installCommand[0][0]としてやることで、"gksudo add-apt-repository ppa:khf03353/ppa-kaorin"という文字列が取得できます。
まあ、リストなので、for文に入れてしまうのが簡単なので、前回のプログラムでは、そのまま、一次元のリストとして扱っていましたが。

んで。
リストには、以下の2種類があります。
  • [] リスト:中の値を入れ替えることができるし、追加、削除も可能。変数の塊。
  • () タプル:中の値を入れ替えることも追加/削除も不可能。定数の塊。
コマンド群はタプルとして定義しました。
これは、プログラム実行中に、値が書き変わってしまっては困るからです。
間違えて代入しても、タプルなら実行時に怒られるので安心です。(笑)

ただ、どちらもリストには違いありませんし、値(中身)の書き換えや、連結、削除が可能かどうか、という点を除けば、性質的な違いはありません。

まあ、アレですよ、リストは出し入れ自由で、いろいろ出来ますが、注意しないとキケンですが、タプルは、見てるだけなので安全ってことです。(なにを
#中出し厳禁。

どちらも女体データ構造としては同様に魅力的ですが、用途が違う、ということでしょうか。

ま、こんな説明では、イマイチ便利さが伝わらないんじゃないかと思うんですが。
コンピュータにデータ処理をさせるというのは、言ってしまえば、連続データを処理するのが一番効率がよいわけです。
データベースなんか、まさにその典型なんですが。
で、その連続データを、「形を気にせず扱える」ことが、このリスト構造の強みなのです。

とはいえ、今回のサンプル、この手のリスト構造の強力さをアピールするようなツールではないので、まあ、仕方ないのか。
いずれにせよ、連続するデータを扱う場合には、このリスト構造を使うと便利、ということだけでも覚えておいて貰いましょう。

せっかくなので、次回、設定ファイルの書き換えをやります。
少し、ホンの少し、今よりもリストの強力さが解るようなサンプルのメソッドを作ります。(^^;

0 件のコメント:

コメントを投稿

'},ClipboardSwf:null,Version:'1.5.1'}};dp.SyntaxHighlighter=dp.sh;dp.sh.Toolbar.Commands={ExpandSource:{label:'+ expand source',check:function(highlighter){return highlighter.collapse;},func:function(sender,highlighter) {sender.parentNode.removeChild(sender);highlighter.div.className=highlighter.div.className.replace('collapsed','');}},ViewSource:{label:'view plain',func:function(sender,highlighter) {var code=dp.sh.Utils.FixForBlogger(highlighter.originalCode).replace(/'+code+'');wnd.document.close();}},CopyToClipboard:{label:'copy to clipboard',check:function(){return window.clipboardData!=null||dp.sh.ClipboardSwf!=null;},func:function(sender,highlighter) {var code=dp.sh.Utils.FixForBlogger(highlighter.originalCode).replace(/</g,'<').replace(/>/g,'>').replace(/&/g,'&');if(window.clipboardData) {window.clipboardData.setData('text',code);} else if(dp.sh.ClipboardSwf!=null) {var flashcopier=highlighter.flashCopier;if(flashcopier==null) {flashcopier=document.createElement('div');highlighter.flashCopier=flashcopier;highlighter.div.appendChild(flashcopier);} flashcopier.innerHTML='';} alert('The code is in your clipboard now');}},PrintSource:{label:'print',func:function(sender,highlighter) {var iframe=document.createElement('IFRAME');var doc=null;iframe.style.cssText='position:absolute;width:0px;height:0px;left:-500px;top:-500px;';document.body.appendChild(iframe);doc=iframe.contentWindow.document;dp.sh.Utils.CopyStyles(doc,window.document);doc.write('

'+highlighter.div.innerHTML+'

');doc.close();iframe.contentWindow.focus();iframe.contentWindow.print();alert('Printing...');document.body.removeChild(iframe);}},About:{label:'?',func:function(highlighter) {var wnd=window.open('','_blank','dialog,width=300,height=150,scrollbars=0');var doc=wnd.document;dp.sh.Utils.CopyStyles(doc,window.document);doc.write(dp.sh.Strings.AboutDialog.replace('{V}',dp.sh.Version));doc.close();wnd.focus();}}};dp.sh.Toolbar.Create=function(highlighter) {var div=document.createElement('DIV');div.className='tools';for(var name in dp.sh.Toolbar.Commands) {var cmd=dp.sh.Toolbar.Commands[name];if(cmd.check!=null&&!cmd.check(highlighter)) continue;div.innerHTML+=''+cmd.label+'';} return div;} dp.sh.Toolbar.Command=function(name,sender) {var n=sender;while(n!=null&&n.className.indexOf('dp-highlighter')==-1) n=n.parentNode;if(n!=null) dp.sh.Toolbar.Commands[name].func(sender,n.highlighter);} dp.sh.Utils.CopyStyles=function(destDoc,sourceDoc) {var links=sourceDoc.getElementsByTagName('link');for(var i=0;i');} dp.sh.Utils.FixForBlogger=function(str) {return(dp.sh.isBloggerMode==true)?str.replace(/
|<br\s*\/?>/gi,'\n'):str;} dp.sh.RegexLib={MultiLineCComments:new RegExp('/\\*[\\s\\S]*?\\*/','gm'),SingleLineCComments:new RegExp('//.*$','gm'),SingleLinePerlComments:new RegExp('#.*$','gm'),DoubleQuotedString:new RegExp('"(?:\\.|(\\\\\\")|[^\\""\\n])*"','g'),SingleQuotedString:new RegExp("'(?:\\.|(\\\\\\')|[^\\''\\n])*'",'g')};dp.sh.Match=function(value,index,css) {this.value=value;this.index=index;this.length=value.length;this.css=css;} dp.sh.Highlighter=function() {this.noGutter=false;this.addControls=true;this.collapse=false;this.tabsToSpaces=true;this.wrapColumn=80;this.showColumns=true;} dp.sh.Highlighter.SortCallback=function(m1,m2) {if(m1.indexm2.index) return 1;else {if(m1.lengthm2.length) return 1;} return 0;} dp.sh.Highlighter.prototype.CreateElement=function(name) {var result=document.createElement(name);result.highlighter=this;return result;} dp.sh.Highlighter.prototype.GetMatches=function(regex,css) {var index=0;var match=null;while((match=regex.exec(this.code))!=null) this.matches[this.matches.length]=new dp.sh.Match(match[0],match.index,css);} dp.sh.Highlighter.prototype.AddBit=function(str,css) {if(str==null||str.length==0) return;var span=this.CreateElement('SPAN');str=str.replace(/ /g,' ');str=str.replace(/');if(css!=null) {if((/br/gi).test(str)) {var lines=str.split(' 
');for(var i=0;ic.index)&&(match.index/gi,'\n');var lines=html.split('\n');if(this.addControls==true) this.bar.appendChild(dp.sh.Toolbar.Create(this));if(this.showColumns) {var div=this.CreateElement('div');var columns=this.CreateElement('div');var showEvery=10;var i=1;while(i<=150) {if(i%showEvery==0) {div.innerHTML+=i;i+=(i+'').length;} else {div.innerHTML+='·';i++;}} columns.className='columns';columns.appendChild(div);this.bar.appendChild(columns);} for(var i=0,lineIndex=this.firstLine;i0;i++) {if(Trim(lines[i]).length==0) continue;var matches=regex.exec(lines[i]);if(matches!=null&&matches.length>0) min=Math.min(matches[0].length,min);} if(min>0) for(var i=0;i

フォロワー