我的索引對象是不可變的,一旦創建不能改變的文件中讀取的不變性。但是我可以在創建後更改這些值。 我在這裏錯過了什麼嗎? 這是我的嘗試: ser = pd.Series([5,0,3,8,4], index=['red','blue','yellow','white','green'])
ser
red 5
blue 0
yellow 3
white 8
green 4
dty
我的Elm應用程序中的模型有一些嵌套記錄。我目前正在使用正常的不可變函數來設置它們。 Types.elm type alias Model =
{ settings : Settings
...
}
type alias Settings =
{ username : String
, password : String
...