小駱駝 第三章 列表與陣列

2021-09-24 06:21:05 字數 1722 閱讀 1763

列表

#!/usr/bin/envperl

use strict;

use warnings;if(

(1,2

,3)eq

(1,2

,3,)

)else

##rightif(

(1..3

)eq(1

,2,3

))else

##wrongif(

(1.1

,2.2

,3.3)==

(1,2

,3))

else

##wrong

my$three=3

;if((

1,2,

$three)eq

(1,2

,3))

else

##right

問題一:如何比較兩個陣列?

問題二:為什麼會在比較時,出現實數值為空的現象?

useless use of a constant (

2) in void context at test.pl line 8

.useless use of a constant (

2) in void context at test.pl line 8

.useless use of a constant (

2) in void context at test.pl line 19

.useless use of a constant (

2) in void context at test.pl line 30

.useless use of a constant (

1.1) in void context at test.pl line 30

.useless use of a constant (

2.2) in void context at test.pl line 30

.useless use of a constant (

2) in void context at test.pl line 41

.useless use of a constant (

2) in void context at test.pl line 41

.right

use of uninitialized value $. in range (

or flip) at test.pl line 18

.wrong

wrong

right

感恩:今天被大佬教育了!

list應該遍歷後再比較!

#!/usr/bin/envperl

use trict;

use warnings;

foreach(1

,2,3

)print

"\n"

;##123

foreach(1

..3)print

"\n"

;##123

foreach(1

,2,3

,)print

"\n"

;##123

my$three=3

;foreach(1

,2,$three

)print

"\n"

;##123

第三章列表

listsize 屬性 列表的元素個數 pos 屬性 列表的當前位置 length 屬性 返回列表中元素的個數 clear 方法 清空列表中的所有元素 find 方法 在列表中查詢某一元素 tostring 方法 返回列表的字串形式 getelement 方法 返回當前位置的元素 insert 方法...

Python學習第三章 列表

列表是由一系列按特定順序排列的元素組成,可以將任何東西加入列表,其中的元素可以彼此沒有任何關係。python中通常用 表示,用逗號分開其中的元素 bicycles trek cannondale redline specialized print bicycles 這樣輸出會將包括方括號在內一起輸出...

第三章 棧 佇列 陣列

1.假設棧初始為空,將中綴表示式 這題和上題區別就是rear指向隊尾元素,而不是隊尾元素的下乙個元素 4.設有下圖所示的火車車軌,入口到出口之間有n條軌道,列車的行進方向均為從左至右,列車可駛入任意一條軌道。現有編號為1 9的9列列車,駛入的次序依次是8,4,2,5,3,9,1,6,7。若期望駛出的...