[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: I very confuse of tabe, only the 3rd can be skiped.
- From: "GHui" <ugiwgh@...>
- Date: Mon, 27 Jun 2016 15:23:20 +0800
I very confuse of tabe, only the 3rd can be skiped.
The test as following:
> d={}
> d[1]=1
> d[2]=2
> d[3]=3
> d[5]=5
> print(#d)
3
> a={}
> a[1]=1
> a[3]=3
> print(#a)
1
> b={}
> b[1]=1
> b[2]=2
> b[4]=4
> print(#b)
4