Today I Learnt 11
Python List Operations If we start with a list seq = [1,2,3,4] then we have the following operations: Python Expression Results Descriptions seq + [5,6,7,8] [1,2,3,4,5,6,7,8] Concatenation seq * 4 [1,2,3,4,1,2,3,4,1,2,3,4,1,2,3,4] Repetition Go 101 This is a continuation of my notes on learning Go. Keywords From Go 101 Go has precisely 25 keywords: break default func interface select case defer go map struct chan else goto package switch const fallthrough if range type continue for import return var Identifiers Composed of Unicode letters, Unicode digits and _ (underscore)...