英語小說單字筆記中2026-2-19

圖片
tamely(テイムリー・ていむりー) 溫順地;順從地 The horse followed him tamely . 馬は テイムリー にかれについていった。 那匹馬溫順地跟著他走。 knotty(ノッティ・のってぃ) 多結的;棘手的;複雜的 It’s a knotty problem to solve. それはとても ノッティ な問題だ。 那是一個相當棘手的問題。

[ swift 2.0 ] tuples

跟Python一樣 
swift也支援tuples這個語法
算是滿新的語法
tuple裡面可以放不同資料型態的變數值
let weather  = ("sunny" , 16)
let (status,temperature ) = weather

print(status, temperature)

或用 key : value的方式來宣告
let weather = (status:"rainy" , temperature:8)
print(weather.status,weather.temperature)

留言