Python-Perl cheatsheet


what Python Perl notes
null type None undef not exactly identical
String concatenation "py"+"thon" "pe"."rl"
declare a list [1,2,3] (1,2,3)
array length len(array) $#array
range(1,100) (1..100)