Differences between revisions 1 and 49 (spanning 48 versions)
Revision 1 as of 2004-08-03 14:00:03
Size: 41109
Comment: Create Wiki version of Jak Kirman's Perl/Python phrasebook.
Revision 49 as of 2012-01-15 17:31:06
Size: 48230
Editor: 91-82-189-171
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
(Based on [http://llama.med.harvard.edu/python/ an original] by the late Jak Kirman.)

TODO: break up into multiple smaller pages; use modern Python idioms; use modern Perl idioms;
add more points of comparison.


This phrasebook contains a collection of idioms, various ways of
accomplishing common tasks, tricks and useful things to know, in Perl
and Python side-by-side. I hope this will be useful for people
switching from Perl to Python, and for people deciding which to choose.
The first part of the phrasebook is based on Tom Christiansen's
[http://www.perl.com/perl/pdsc/ Perl Data Structures Cookbook].


I have only been working on this for a short time, so many of the
translations could probably be improved, and the format could be greatly
cleaned up.


I will get the data-structures
cookbook translated first and then go back to clean up the code. Please
send me any comments or suggestions.


Also, since I have been using Python for far less time than Perl, there
are certainly idioms I don't know or that I will misuse. If you see any
such cases, please send me mail.



Things I would like to add to this phrasebook are:
(Based on Perl/Python Phrasebook by Jak Kirman)
(Could we modify theme, so code is more visible)
It all should look as here:
http://www.lucasmanual.com/mywiki/PerlPythonPhrasebook
Please remove the link when theme is updated
thx

<<TableOfContents>>

== Introduction ==

This phrasebook contains a collection of idioms, various ways of accomplishing common tasks, tricks and useful things to know, in Perl and Python side-by-side. I hope this will be useful for people switching from Perl to Python, and for people deciding which to choose. The first part of the phrasebook is based on Tom Christiansen's [[http://www.perl.com/perl/pdsc/|Perl Data Structures Cookbook]].

I have only been working on this for a short time, so many of the translations could probably be improved, and the format could be greatly cleaned up.

I will get the data-structures cookbook translated first and then go back to clean up the code.
Also, since I have been using Python for far less time than Perl, there are certainly idioms I don't know or that I will misuse. Please feel free to fix and update.

--

Other references: [[http://pleac.sourceforge.net/|PLEAC]].

--

Thanks to David Ascher, Guido van Rossum, Tom Christiansen, Larry Wall and Eric Daniel for helpful comments.

--

TODO:
 * break up into multiple smaller pages
 * use modern Python idioms
 * use modern Perl idioms
 * add more points of comparison
 * Use sorted() where appropriate once 2.4 has been out a while.
 * Get rid of map() where possible.
Line 34: Line 37:
 *Common tasks (reading from a file, exception handling, splitting strings, regular expression manipulation, etc.)
 *Sections 4 and 5 of the Perl Data Structures Cookbook.


Thanks to David Ascher, Guido van Rossum, Tom Christiansen, Larry Wall
and Eric Daniel for helpful comments.
 * Common tasks (reading from a file, exception handling, splitting strings, regular expression manipulation, etc.)
 * Sections 4 and 5 of the Perl Data Structures Cookbook.
 * Vertical whitespace needs fixing.

QUESTIONS:
 * Should function and data structure names for python code be in python_style (and more appropriate/informative)?

== The obvious ==

Python don't need no steenking semicolons.

== The not so obvious ==
There are many Integrated Development Environments, (IDEs), for Python that are usually recommended to new users and used by seasoned Python programmers alike. The Idle IDE is a TK based GUI providing language-aware editing, debugging and command line shell for Python that is part of the Python distribution.
Many of the python examples shown can be experimented with in the Idle IDE.
  
Line 52: Line 63:
Line 54: Line 64:

}}}

{{{
}}}

{{{
Line 60: Line 68:

}}}


Note that string variables in Perl are specified with a dollar sign;
in Python you just specify the name of the variable.

Larry Wall points out:
    This is rather oversimplifying what is going on in both
    Perl and Python. The `$` in Perl indicates a scalar variable,
    which may hold a string, a number, or a reference. There's
    no such thing as a string variable in Python, where
    variables may ''only'' hold references.

    You can program in a Pythonesque subset of Perl by
    restricting yourself to scalar variables and references.
    The main difference is that Perl doesn't do implicit
    dereferencing like Python does.
}}}

The `$` in Perl indicates a scalar variable, which may hold a string, a number, or a reference. There's no such thing as a string variable in Python, where variables may ''only'' hold references.

    You can program in a Pythonesque subset of Perl by restricting yourself to scalar variables and references. The main difference is that Perl doesn't do implicit dereferencing like Python does.
Line 83: Line 78:
Line 90: Line 84:

for $i ($s1, $s2, $s3, $s4, $s5, $s6)
$s7 = 'a stri\ng that au\tomatically escapes backslashes';

foreach my $i ($s1, $s2, $s3, $s4, $s5, $s6, $s7)
Line 93: Line 88:
  print ("$i\n");
}

}}}

{{{
  print "$i\n";
}
}}}

{{{
Line 106: Line 99:

for i in (s1, s2, s3, s4, s5, s6):
s7 = r"a stri\ng that au\tomatically escapes backslashes"

for i in (s1, s2, s3, s4, s5, s6, s7):
Line 109: Line 103:

}}}
}}}
Line 114: Line 106:
Python, there is no difference between the two, whereas in Perl,
double-quoted strings have control characters and
variables interpolated
inside them (see below) and single-quoted strings do not.  
Python, there is no difference between the two except that in single-
quoted strings double-quotes need not be escaped by doubling them
, and
vice versa. I
n Perl, double-quoted strings have control characters and
variables interpolated inside them (see below) and single-quoted
strings do not.
Line 120: Line 114:
perl has very elaborate (and very useful) quoting mechanisms; see the
operators q, qq, qw, qx, etc. in the Perl manual.
Python has the {{{r}}} prefix ({{{r"some string"}}} or {{{r'some string'}}} or {{{r"""some string"""}}} or {{{r'''some string'''}}}) to indicate strings in which backslash is automatically
escaped -- highly useful for regular expressions. Perl has very elaborate (and very useful) quoting mechanisms; see the operators {{{q}}}, {{{qq}}}, {{{qw}}}, {{{qx}}}, etc. in the PerlManual.
Line 126: Line 120:
Note that in Perl you can always replace `foreach` with `for`, which is shorter; but explicitly writing `foreach` is clearer, so you don't confuse it with the other kind of `for`.
Line 131: Line 127:

$name = "Fred";
$name    = "Fred";
Line 134: Line 129:
$title = "Dr."; $title   = "Dr.";
Line 138: Line 133:

}}}

{{{
}}}

{{{
Line 150: Line 143:
Line 160: Line 152:
Perl has a function `sprintf` that behaves similarly to
Python's `%` operator; the a
bove lines could have been
written:
{{{
$name = "Fred";
$header1 = sprintf ("Dear %s,", $name);
$title
= "Dr.";
$header2 = sprintf ("Dear %s %s,", $name, $title);
Perl has a function `sprintf` that uses the % conversion á la C;
so the a
bove lines could have been written:
{{{
$name    = "Fred";
$header1 = sprintf "Dear %s,", $name;
$title
= "Dr.";
$header2 = sprintf "Dear %s %s,", $name, $title;
Line 202: Line 193:
(the global symbol table), and `vars()` (what exactly is
this?)


(the global symbol table), and `vars()` (equivalent to `locals()` except
when an argument is given, in which case it returns {{{arg.__dict__}}}).

[[http://www.python.org/peps/pep-0215.html|PEP215]] proposed a {{{$"$var"}}}
substitution mode as an alternative to {{{"%(var)s" % locals()}}}, but was rejected in favour of the explicit Template class proposed in
[[http://www.python.org/peps/pep-0292.html|PEP292]], which required no syntax changes.
Line 212: Line 204:
Line 215: Line 206:
substr($s2, 0, 3) = 'X';   # replace the first 3 chars with an X

print ("$s1\n$s2\n");

}}}

{{{
$s2 = substr $s2, 0, 3,''; # extract the first 3 chars: "A s"

print "$s1\n$s2\n";
}}}

{{{
Line 225: Line 214:
s2 = regsub.gsub ('\n', '[newline]', s2)
s2 = 'X' + s2[3:]
s2 = s2.replace("\n", "[newline]")
s2 = s2[:3]
Line 230: Line 219:
Line 237: Line 225:
appropriate pieces.   appropriate pieces.
Line 246: Line 234:
the last element. If either index is negative, the length of the array
is added to it.


Perl has similar slicing operations [describe].
the last element. If either index is negative, the length of the array is added to it. So a[-4:] is the last four characters of a.


In Perl, slicing is performed by giving the array a list
of indices to be included in the slice. This list can be
any arbitrary list and by using the range operator `...`,
you can get Python like slicing. If any of the indices in
the list is out of bounds an `undef` is inserted there.

{{{
@array = ('zero', 'one', 'two', 'three', 'four')

# slicing with range operator to generate slice index list
@slice = @array[0..2] # returns ('zero', 'one', 'two')

# Using arbitary index lists
@slice = @array[0,3,2] # returns ('zero', 'three', 'two')
@slice = @array[0,9,1] # returns ('zero', undef, 'one')
}}}

Note: Perl range operator uses a closed interval. To get the range to the end of the array,
the last index must be used as

{{{
@a=(1,2,3,4,5);
$#a; # last index, 4, because the firs index is 0 as in Python.
@a[ 2..$#a ] # as Python's a[2:]
}}}
Line 257: Line 267:
{{{

use Module;

use Module (symbol1, symbol2, symbol3);
# or use Module qw(symbol1 symbol2 symbol3);

}}}

{{{

from Module import *

from Module import symbol1, symbol2, symbol3

}}}


I need to figure out the precise differences here. Roughly,
from..import * and use Module mean import the entire namespace; the
other versions import only selected names.


{{{

require Module;

Module::func();

}}}

{{{

import Module;

Module.func()

}}}


This "loads" the specified module, executing any initialization code.
It does not modify the namespace. In order to access symbols in the
module, you have to explicitly qualify the name, as shown.
In Perl a module is simply a package with a package name. ( see: perldoc -f package ).
The symbols exported by the module depends on the module itself. The module may export symbols - mostly functions - by default,
on request or none of them. In the latter case the module usually a class or has special access, like File::Spec.
In Perl the module interfaces may vary - see the doc of the particular module.

{{{
use Module; # imports module. It module exports symbols by default, those appeare in the package namespace.

use Module qw(symbol1 symbol2 symbol3); # preferred
or
use Module "symbol1";

}}}

{{{
from module import symbol1, symbol2, symbol3

# Allows mysymbol.func()
from module import symbol1 as mysymbol

# Unless the module is specifically designed for this kind of import, don't use it
from module import *

module.func()
}}}
Line 311: Line 302:

$filename = "cooktest1.1-1";
open (F, $filename) or die ("can't open $filename: $!\n");
@lines = <F>;

}}}

{{{
my $filename = "cooktest1.1-1";
open my $f, $filename or die "can't open $filename: $!\n";
@lines = <$f>;
}}}

{{{
Line 321: Line 309:
try:
  f = open (filename)
except:
  sys.stderr.write ("can't open %s: %s %s\n" %
                     (filename, sys.exc_type, sys.exc_value))
f = open(filename) # Python has exceptions with somewhat-easy to
                   # understand error messages. If the file could
                   # not be opened, it would say "No such file or
                   # directory: %filename" which is as
                   # understandable as "can't open $filename:"
Line 327: Line 315:

Line 336: Line 322:
function.  function.
Line 344: Line 330:



=== looping over files given on the command line or stdin ===
The useful Perl idiom of:
{{{
while (<>) {
    ... # code for each line
}
}}}
loops over each line of every file named on the commandline when executing the script; or, if no files are named, it will loop over every line of the standard input file descriptor.

The Python fileinput module does a similar task:
{{{
import fileinput
for line in fileinput.input():
    ... # code to process each line
}}}
The fileinput module also allows inplace editing or editing with the creation of a backup of the files, and a different list of files can be given instead of taking the command line arguments.
 
In more recent python versions, files can act as iterators, so you would just write:

{{{
for line in open(filename):
    ... # code to process each line
}}}

If you want to read from standard in, then use it as the filename:
{{{
import sys
for line in open(sys.stdin):
    ... # code to process each line
}}}

If you want to loop over several filenames given on the command line, then you could write an outer loop over the command line. (You might also choose to use the fileinput module as noted above).

{{{
import sys
for fname in sys.argv[1:]
    for line in open(fname):
        ... # code to process each line
}}}
Line 355: Line 376:
 *Perl's regular expressions are much more powerful than those of Python.
 *Perl's quoting mechanisms are more powerful than those of Python.
 *I find Python's syntax much cleaner than Perl's
 *I find Perl's syntax too flexible, leading to silent errors. The -w
flag and `use strict` helps quite a bit, but still not as
much as Python.
 *I like Python's small core with a large number of standard
libraries. Perl has a much larger core, and though many libraries are
available, since they are not standard, it is often best to avoid them
for portability.
 *Python's object model is very uniform, allowing you, for example, to
define types that can be used wherever a standard file object can be used.
 *Python allows you to define operators for user-defined types.
 * Perl's regular expressions are much more accessible than those of Python being embedded in Perl syntax in contrast to Pythons import of its re module.
 * Perl's quoting mechanisms are more powerful than those of Python.
 * I find Python's syntax much cleaner than Perl's
 * I find Perl's syntax too flexible, leading to silent errors. The -w flag and `use strict` helps quite a bit, but still not as much as Python.
 * I like Python's small core with a large number of standard libraries. Perl has a much larger core, and though many libraries are available, since they are not standard, it is often best to avoid them for portability.
 * Python's object model is very uniform, allowing you, for example, to define types that can be used wherever a standard file object can be used.
 * Python allows you to define operators for user-defined types. The operator overloading facility in Perl is provided as an add-on---the `overload` module.
Line 373: Line 388:
Line 376: Line 390:
The perl code in this section is taken, with permission, almost directly
from Tom Christiansen's [http://www.perl.com/perl/pdsc/ Perl Data Structures Cookbook], part 1, release 0.1, with a few typos
The Perl code in this section is taken, with permission, almost directly
from Tom Christiansen's [[http://www.perl.com/perl/pdsc/|Perl Data Structures Cookbook]], part 1, release 0.1, with a few typos
Line 388: Line 402:
sub printSep {   print ("=" x 60, "\n"); } sub printSep { print "=" x 60, "\n" }
Line 393: Line 407:
  print ("$s\n");
  for $l (@$lol)
 
{
    print (join (" ", @$l));
    print ("
\n");
  print "$s\n";
  foreach my $l (@$lol) {
    print "@{$l}\n";
Line 402: Line 414:
# return numeric (or other) converted to string
sub somefunc { my ($i) = shift; "$i"; }

}}}

{{{
def printSep ():
  print '=' * 60

def printLoL (s, lol):
  print s
  for l in lol:
    print string.join (l)
  printSep()
# which is longhand for:
sub printLoL {
  print "$_[0]\n";
  print "@$_\n" foreach @{$_[1]};
  printSep();
}

# or even:
sub printLoL {
  print "$_[0]\n", map("@$_\n" , @{$_[1]}), "=" x 60, "\n";
}

# return numeric (or other) converted to string
sub somefunc { "". shift }
}}}

{{{
def printSep():
    print '=' * 60

def printLoL(s, lol):
    out = [s] + [" ".join(str(elem)) for elem in lol]
    print "\n".join(out)
    printSep()
Line 418: Line 440:
  return repr(i) # string representation of i (aka `i`)
   return str(i) # string representation of i
Line 429: Line 450:
Eric Daniel points out that
some parts of these examples assume that the elements of the
(lower-level) lists are strings; to convert an arbitrary list of lists
to a list of lists of strings, you can use a function like:
{{{
# str_conv takes a list of lists of arbitrary objects, and returns a
# list of lists of their string representations.
def str_conv(lol):
    result = []
    for l in lol:
        result.append(map (repr, l))
    return result
}}}


==== Lost in the translation ====

In converting Perl examples so directly to Python, whilst initially useful, the casual browser should be aware that the task of {{{printLoL}}}
is usually accomplished by just
{{{
  print lol
}}}
As Python can print default string representations of all objects.

An import of the pprint at the beginning of a module would then allow
{{{
  pprint(lol)
}}}
to substitute for all cases of printLol in a more 'pythonic' way.
({{{pprint}}} gives even more formatting options when printing data structures).
Line 449: Line 469:

{{{

import sys, string, regex, regsub

}}}

Perl's `use` is roughly equivalent to Python's
`import`.  
{{{
import sys
}}}
Perl's `use` is roughly equivalent to Python's `import`.
Line 462: Line 477:



    "Some people, when confronted with a problem, think 'I know, I'll use
    regular expressions.' Now they have two problems." - Jamie Zawinski

For many simple operations, Perl will use a regular expression where
Pythonic code won't. Should you really need to use regular expressions,
import the `re` module.
Line 470: Line 487:
@LoL = (  @LoL = (
Line 477: Line 494:
printLoL ('Families:', \@LoL); 
}}}

{{{
LoL = [    [ "fred", "barney" ],
  [
"george", "jane", "elroy" ],
  [
"homer", "marge", "bart" ]
]
LoLsave = LoL[:]; # See comment below

printLoL ('Families:', LoL)
printLoL 'Families:', \@LoL;
}}}

{{{
LoL = [["fred", "barney"],
       [
"george", "jane", "elroy"],
       [
"homer", "marge", "bart"]]
LoLsave = LoL[:] # See comment below

printLoL('Families:', LoL)
Line 515: Line 530:
deep copy ([make a link here]), since references in the original array deep copy, since references in the original array
Line 524: Line 539:
You can make a deep copy using the copy module:
{{{
import copy

a = [[1, 2, 3], [4, 5, 6]]
b = copy.deepcopy(a)
b[0][0] = 999
print a[0][0] # prints 1
}}}
Line 531: Line 554:


Line 538: Line 558:
open (F, "cookbook.data1");
@LoL = ();
while ( <F> ) {
   push @LoL, [ split ];
}

printLoL (
"read from a file: ", \@LoL);
}}}

{{{
f = open ('cookbook.data1')
LoL =
[];
while (1)
:
  line = f.readline()
  if not line : break
  LoL.append (string.split (line))

printLoL (
'read from a file: ', LoL)

}}}


Unless you expect to be reading huge files, or want feeback as you
open my $f, "cookbook.data1" or die $!;
my @LoL;
while (<$f>) {
  push @LoL, [ split ];
}
printLoL "read from a file: ", \@LoL;
}}}

{{{
LoL = []
for line in open
('cookbook.data1'):
    LoL.append(line
[:-1].split())
printLoL('read from a file
: ', LoL)
}}}


Unless you expect to be reading huge files, or want feedback as you
Line 569: Line 582:
In Python, you read one line from a file with `f.readline()`
and the entire file as a list of lines with `f.readlines()`.




Line 581: Line 587:
open (F, "cookbook.data1");

@LoL = map { chop; [split]; } <F>;

printLoL (
"slurped from a file: ", \@LoL);

}}}

{{{
f = open ('cookbook.data1')
LoL = map
(string.split, f.readlines())
printLoL ("slurped from a file: ", LoL)

}}}


Thanks to Adam Krolnik for help with the perl syntax here.


open my $f, "cookbook.data1" or die $!;
@LoL = map [split], <$f>;
printLoL "slurped from a file: ", \@LoL;

}}}

{{{
LoL = [line[:-1].split() for line in open('cookbook.data1')]
printLoL
("slurped from a file: ", LoL)
}}}


Thanks to Adam Krolnik for help with the Perl syntax here.
Line 608: Line 607:

    
for $i ( 0 .. 9 ) {
     $LoL[$i] = [ somefunc($i) ];
    }

printLoL ("filled with somefunc:", \@LoL);
foreach my $i ( 0 .. 9 ) {
    $LoL[$i] = [ somefunc $i ];
}
printLoL("filled with somefunc:", \@LoL);
Line 621: Line 618:
for i in range (10):
  LoL[i] = [ somefunc(i) ]

printLoL ('filled with somefunc:', LoL)

}}}
for i in range(10):
  LoL[i] = somefunc(i) # assuming that somefunc(i) returns the list that we want

printLoL('filled with somefunc:', LoL)

}}}
Or:
{{{

LoL = []

for i in range(10):
  LoL.append( somefunc(i) )

printLoL('filled with somefunc:', LoL)

}}}

Alternatively, you can use a list comprehension:
{{{
LoL = [somefunc(i) for i in range(10)]
printLoL('filled with somefunc:', LoL)
}}}
Line 642: Line 657:
    for $i ( 0 .. 9 ) {
     @tmp = somefunc($i);
     $LoL[$i] = [ @tmp ];
    }
foreach my $i (0..9) {
    @tmp = somefunc $i;
    $LoL[$i] = [ @tmp ];
}
Line 651: Line 666:
for i in range (10):
  tmp = somefunc(i)
LoL[i] = [tmp]

printLoL ('filled with somefunc via temps:', LoL)

}}}



{{{
@LoL = map { [ somefunc(
$_) ] } 0..9;
printLoL ('filled with map', \@LoL);

}}}

{{{

LoL = map
(lambda x: [ somefunc(x) ], range(10))
printLoL ('filled with map', LoL)
for i in range(10):
    tmp = somefunc(i)
  
LoL[i] = tmp

printLoL('filled with somefunc via temps:', LoL)
}}}



{{{
@LoL = map
[ somefunc $_ ], 0..9;
printLoL 'filled with map', \@LoL;
}}}

{{{
LoL = map
(lambda x: somefunc(x), range(10))
printLoL('filled with map', LoL)
Line 689: Line 700:
@LoL = map { [ somefunc($_) ] }, 0..9;
}}}
Rather than
{{{
@LoL = map ({[ somefunc($_) ]}, 0..9);
@LoL = map {[ somefunc($_) ]} 0..9;
}}}
rather than
{{{
@LoL = map [ somefunc($_) ], 0..9;
Line 697: Line 708:
@LoL = map ( [ somefunc($_) ] , 0..9); @LoL = map ([ somefunc($_)], 0..9);
Line 709: Line 720:
Line 711: Line 721:
push @{ $LoL[0] }, "wilma", "betty"; push @{$LoL[0]}, "wilma", "betty";
Line 713: Line 723:
     }}}

{{{
}}}

{{{
Line 719: Line 727:
LoL[0] = LoL[0] + ["wilma", "betty"]
printLoL ('after appending to first element:', LoL);
LoL[0] += ["wilma", "betty"]
printLoL('after appending to first element:', LoL)
Line 726: Line 733:
for sequences. An alternative to the above code is to append each element for sequences. The `+` operator returns a new list object.
A
lternative to the above code that modify the original list object is to append each element
Line 729: Line 737:
LoL[0].append ("wilma")
LoL[0].append ("betty")
LoL[0].append("wilma")
LoL[0].append("betty")
}}}
Or to extend:
{{{
LoL[0].extend(["wilma", "betty"])
Line 749: Line 761:
Line 756: Line 767:
Line 764: Line 774:
# upcase the first letter
$LoL[1][1] =~ s/(\w)/\u$1/;
# upcase the first letter of each word
# s/(\w)/\u$1/ is almost equivalent to Python .capitalize() [.capitalize() also lowercases the remaining letters]

$LoL[1][1] =~ s{\b(\w)}{\u$1}g;
Line 768: Line 780:

}}}

{{{
# upcase the first letter
s = LoL[1][1]
i = regex.search ('\w', s)
if i != -1:
  LoL[1][1] = string.upper (s[:i+1]) + string.lower (s[i+1:])
}}}

{{{
LoL[1][1] = LoL[1][1].title()
Line 779: Line 786:

}}}


Perl has a specific operation for capitalizing a string (I am not sure
exactly what the definition of this is), whereas python does not. This
example seems quite tortuous in python, but I am not sure that it is a
very common thing to want to do. If you often want to capitalize the
first letter of a string, define a function like:

{{{
def capitalize(s):
  i = regex.search ('\w', s)
  if i != -1:
    result = string.upper (s[:i+1]) + string.lower (s[i+1:])
  else:
    result = s
  return result
}}}
The above then becomes:
{{{
LoL[1][1] = capitalize (LoL[1][1])
print 'element 1, 1 is now', LoL[1][1]
printSep()
Line 807: Line 790:
expressions.



expressions.
Python replaced its original regular expression module some years ago with one that closely matches the capabilities of Perls, including being able to do advanced RE tasks such as calling a function to provide the data for an RE substitution, and the optional inclusion of whitespace and comments in REs.

In Python, string methods are often used where Perl would use a
regex. Among these string methods are `title()` and `capitalize()`.

In the context of names, `title()` will be used as it correctly
changes "smith-jones" to "Smith-Jones" whereas `capitalize()`
would produce "Smith-jones".

`str2 = str1.capitalize()` in Python is equivalent to `$str2 = ucfirst(lc($str1))` in Perl.

Python's `str2 = str1.title()` is equivalent to Perl's:
{{{
$str2 = $str1;
$str2 =~ s{\b(\w)(\w*)\b}{\u$1\L$2\E}g;
}}}

This is because regular expression search and replace operations
modify the string in place (Perl strings are mutable).
Line 817: Line 815:

Line 821: Line 817:

{{{

for $aref ( @LoL ) {
{{{
foreach my $aref ( @LoL ) {
Line 828: Line 822:

}}}

{{{
}}}

{{{
Line 834: Line 826:
  print "\t [ %s ]," % string.join(a)    print "\t [ %s ]," % a
Line 836: Line 828:
Line 847: Line 838:

for $i ( 0 .. $#LoL ) {
foreach my $i ( 0 .. $#LoL ) {
Line 856: Line 846:
Line 858: Line 847:
  print "\t [ %s ]," % string.join(LoL[i])   print "\t [ %s ]," % LoL[i]
Line 861: Line 850:

}}}


In Perl, the highest valid index of an array `@A` is
`$#A`. In Python, it is `len(A)`.
}}}


The highest valid index of an array `A`:
 * Perl: `$#A`.
 * Python: `len(A) - 1`.
But note: The highest valid upper bound to a python range is len(A) as in
{{{
A[0:len(A)]
}}}

Size of an array `A`:
 * Perl: `scalar(@A)`
 * Python: `len(A)`

Note: Perl does not really have a length operator like Python. `scalar()` simply provides a scalar context, and in a scalar context an array returns its size. (Perl is context-sensitive and things behave differently based on their context.)

Generate range of numbers:
 * Perl: `(0..9)`
 * Python: `range(0, 10)` or simply `range(10)` (assumes 0 as initial)

Note: Perl uses a closed interval, while Python uses a closed-open interval. You will notice that this pattern is quite consistently applied in both languages.
Line 870: Line 875:
{{{


}}}


Line 882: Line 880:

for $i ( 0 .. $#LoL ) {
    for $j ( 0 .. $#{$LoL[$i]} ) {
foreach my $i ( 0 .. $#LoL ) {
    foreach my $j ( 0 .. $#{$LoL[$i]} ) {
Line 889: Line 886:

}}}

{{{

for i in range (len(LoL)):
  for j in range (len(LoL[i])):
    print 'elt %d %d is %s' % (i, j, LoL[i][j])
}}}

{{{
for i, mylist in enumerate(LoL):
   for j, elem in enumerate(mylist):
     print 'elt %d %d is %s' % (i, j, elem)
Line 898: Line 893:

}}}


{{{


}}}
}}}
Line 913: Line 900:

sub printLine { print (join (" ", @{shift()}), "\n"); }
map (printLine ($_), @LoL);
sub printLine { print "@{shift()}\n" }
map printLine($_), @LoL;
Line 917: Line 903:

}}}

{{{

def printLine(l) : print string.join (l)
map (printLine, LoL)
}}}


{{{
# This is legal but Do Not Do This
def printLine(l):
   print " ".join(l)
map(printLine, LoL)
Line 925: Line 912:
Line 935: Line 921:

print map { join (' ', @$_), "\n" } @LoL;
print map "@$_\n", @LoL;
Line 938: Line 923:

}}}

{{{
# Can't do it without horrible kludges, as far as I know.
# print is a statement, not a function, so you can't directly use
# a lambda expression. Suggestions? For now, same as above.

def printLine(l) : print string.join (l)
map (printLine, LoL)
}}}

{{{
# This is legal but Do Not Do This
map(lambda x: sys.stdout.write(" ".join(x)), LoL)
Line 949: Line 929:

Line 959: Line 937:
In perl, a function can be defined inside another function, but it is
defined in the namespace of the current package.





In Perl, a function can be defined inside another function, but it is
defined in the namespace of the current package. If you need Python-like scoping of functions, you can create an anonymous subroutine and assign it to a lexically scoped variable:

{{{
# A Python function with its own private function
def lolprint(LoL):
   # Private function
   def lprint(alist):
      print " ".join(str(alist))
   map(lprint, LoL)

# Achieving the same in Perl
sub lolprint {
   # Private function
   # (function reference stored in a lexically scoped variable)
   my $lprint = sub {
      my $list = shift;
      print "@$list";
   };
   map $lprint->($_), @_;
}

# In Perl, if you did this, the function is no longer private.
sub lolprint {
   # This is not a private function
   sub lprint {
      my $list = shift;
      print "@$list";
   };

   map lprint($_), @_;
}

}}}
Line 972: Line 976:
The perl code in this section is taken, with permission, almost directly
from Tom Christiansen's [http://www.perl.com/perl/pdsc/ Perl Data Structures Cookbook], part 2, release 0.1, with a few typos
The Perl code in this section is taken, with permission, almost directly
from Tom Christiansen's [[http://www.perl.com/perl/pdsc/|Perl Data Structures Cookbook]], part 2, release 0.1, with a few typos
Line 978: Line 982:
''value''. In Python, the key may be of almost any type [(link to
explanation of why lists can't be keys)]; I am not what the
limitations are in Perl.
''value''. In Python, the key may be of any type which is ''hashable'' (mutable data structures, like lists, sets, dictionaries, are no hashable). In Perl, the keys of a hash are converted into strings, which means if you try to use a reference as a key, it will get converted to some string representation, and you will not be able to use it as a reference anymore.
Line 986: Line 988:



Line 994: Line 992:
sub printSep {   print ("=" x 60, "\n"); }

sub printHoL
{
sub printSep { print "=" x 60, "\n" }

sub printHoL {
Line 999: Line 996:
  print ("$s\n");
  for $k (sort keys (%$hol))
  print "$s\n";
  foreach my $k (sort keys (%$hol))
Line 1002: Line 999:
    my ($v) = $hol->{$k};  
    print ("$k : ", join (" ", @$v), "\n")
    my ($v) = $hol->{$k};
    print "$k: @$v\n";
Line 1008: Line 1005:
sub get_family{
  my ($group) = shift;
sub get_family {
  my ($group) = @_;
Line 1013: Line 1010:
}

}}}

{{{
def printSep():
    print '=' * 60

def printHoL(s, hol):
    print s
    for key, value in sorted(hol.items()):
        print key, ':', " ".join(value)
    printSep()

def get_family(group):
  group = group.title()
  return ["Mr-" + group, "Mrs-" + group, group + "-Jr"]
}}}

`printHoL` pretty-prints a hash/dictionary of lists.

`printSep` prints a line of equal signs as a separator.

`get_family` makes a list of names from a "group name", e.g.,
`flintstones` becomes `[ "Mr-Flintstone", "Mrs-Flintstone", "Flintstone-Jr" ]`
This is for generating lists to fill a hash/dictionary.


hol.items()` converts a dictionary to a list of (key, value) pairs, eg:
`[('flintstones', ['fred', 'barney']), ('jetsons', ['george', 'jane', 'elroy']), ('simpsons', ['homer', 'marge', 'bart'])]`
This list is then sorted (sorting is in-place in python) and then the
pairs in the list are unpacked and used.


If you didn't care for the results to be sorted (which is often true), you would simply do this:

{{{
sub printHoL {
  my ($s, $hol) = @_;
  print "$s\n";
  while (my ($k, $v) = each (%$hol))
  {
    print "$k: @$v\n")
Line 1014: Line 1054:

}}}

{{{
import string, regex, regsub

def printSep ():
  print '=' * 60
  printSep();
}
}}}

{{{
Line 1024: Line 1060:
  print s
  ks = hol.keys(); ks.sort()
  for k in ks:
    print k, ':', string.join(hol[k])
  printSep()

def get_family(group):
  group = regsub.sub ('s$', '', group)
  group = string.upper (group[:1]) + string.lower (group[1:])
  return ["Mr-" + group, "Mrs-" + group, group+ "-Jr"];

}}}

`printHoL` pretty-prints a hash/dictionary of lists.

`printSep` prints a line of equal signs as a separator.

`get_family` makes a list of names from a "group name", e.g.,
`flintstones` becomes `[ "Mr-Flintstone",
"Mrs-Flintstone", "Flintstone-Jr" ]` This is for generating lists
to fill a hash/dictionary.




    print s
    for key, value in hol.items():
        print key, ':', " ".join(value)
    printSep()
}}}
Line 1056: Line 1071:

%HoL = ( 
%HoL = (
Line 1063: Line 1077:
printHoL ('names', \%HoL);

}}}

{{{
printHoL 'names', \%HoL;
}}}

{{{
Line 1073: Line 1085:
printHoL ('names', HoL)
printHoL('names', HoL)
Line 1082: Line 1093:
than 
{{{
    print k, ':', string.join(v)
than
{{{
print k, ':', " ".join(v)
Line 1089: Line 1100:
print "%s: %s", (k, string.join(v)) print "%s: %s" % (k, " ".join(v))
Line 1094: Line 1105:
Note that both perl and python let you have a comma after the last Note that both Perl and python let you have a comma after the last
Line 1108: Line 1119:
       flintstones        => [ "fred", "barney" ],
       jetsons        => [ "george", "jane", "elroy" ],
       simpsons        => [ "homer", "marge", "bart" ],
       flintstones => [ "fred", "barney" ],
       jetsons => [ "george", "jane", "elroy" ],
       simpsons => [ "homer", "marge", "bart" ],
Line 1118: Line 1129:
is no longer necessary.       is no longer necessary.
Line 1141: Line 1148:

%HoL = ();
open (F, "cookTest.2");
while ( <F> ) {
my %HoL;
open my $f, "cookTest.2" or die $!;
while ( <$f> ) {
Line 1148: Line 1154:
printHoL ('read from file cookTest.2', \%HoL);

}}}

{{{
printHoL 'read from file cookTest.2', \%HoL;
}}}

{{{
Line 1155: Line 1159:
f = open ('cookTest.2')
while 1:
  s = f.readline()
  if not s: break
  n = string.find (s, ':')
  if n < 0 : continue # bad line
  key = string.strip (s[:n])
  val = string.split (s[n+1:]) # n+1 to leave out the colon
  HoL[key] = val

printHoL ('read from file cookTest.2', HoL)

}}}

Note that the perl hash is initialized with an empty ''list'', not
an empty hash reference (`{ }`). Writing
{{{
%HoL = {}
}}}

Obviously, the python section could be done more concisely, for example
eliminating temporary vars key and val, but this would make
it pretty impenetrable.

The python section could be written using regular expressions:

{{{
prog = regex.compile("\([^:]*\):\(.*\)")
while 1:
  s = f.readline()
  if not s: break
  if prog.match(s) >= 0:
    key, val = s.group(1, 2)
    HoL[key] = val
}}}




for line in open('cookTest.2'):
    try:
        surname, people = line.split(":", 1)
    except ValueError: # can't split on ":" so no ":" in the line
        continue
    HoL[surname] = people.split()

printHoL('read from file cookTest.2', HoL)
}}}


Note that the Perl hash doesn't need to be initialized.
Line 1201: Line 1177:
open (F, "cookTest.3");
%HoL = {};
while ( $line = <F> ) {
open my $f, "cookTest.3" or die $!;
my %HoL;
while ( defined(my $line = <$f>) ) {
Line 1210: Line 1186:
printHoL ('read from cookTest.3', \%HoL);

}}}

{{{
printHoL 'read from cookTest.3', \%HoL;
}}}

{{{
Line 1217: Line 1191:
f = open ('cookTest.3')
while 1:
  line = f.readline()
  if not line : break
  n = string.find (line, ':')
  if n < 0 : continue
  who, rest = line[:n], line[n+1:] # n+1 skips the colon
  fields = string.split (rest)
  HoL[who] = fields
for line in open('cookTest.3'):
    try:
        n = line.index(":")
    except ValueError: # ":" not found
        continue
    who, rest = line[:n], line[n+1:] # n+1 skips the colon
    fields = rest.split()
    HoL[who] = fields
Line 1228: Line 1201:

}}}


??? points out that, arguably, it makes more sense to say:
{{{
n = string.find (s, ':')
if n < 0: continue
}}}

rather than
{{{
n = string.find (s, ':')
if n == -1: continue
}}}

since it is the sign of `n` that is special.

}}}
Line 1257: Line 1212:

%HoL = {};
for $group ( "simpsons", "jetsons", "flintstones" ) {
    $HoL{$group} = [ get_family($group) ];
}

printHoL ('filled by get_family', \%HoL);

}}}

{{{
my %HoL;
foreach my $group (qw/simpsons jetsons flintstones/) {
    $HoL{$group} = [get_family $group];
}

printHoL 'filled by get_family', \%HoL;
}}}

{{{
Line 1270: Line 1222:
for group in "simpsons", "jetsons", "flintstones": for group in ("simpsons", "jetsons", "flintstones"):
Line 1273: Line 1225:
printHoL ('filled by get_family', HoL);

}}}


The python section could have been written:
printHoL ('filled by get_family', HoL)
}}}


The python section could [but should NOT] have been written:
Line 1281: Line 1232:
def set(group, hol=HoL): hol[group] = get_family(group) def set(group, hol=HoL):
   
hol[group] = get_family(group)
Line 1284: Line 1236:
printHoL ('filled by get_family', HoL);
}}}
 

The perl section could have been written:

{{{
%Hol = {};
map { $HoL{$_} = [ get_family($_) ] } "simpsons", "jetsons", "flintstones";
}}}

printHoL ('filled by get_family', HoL)
}}}


The Perl section could have been written:

{{{
my %Hol;
map {$HoL{$_} = [ get_family $_ ]} qw/simpsons jetsons flintstones/;
}}}


The Perl section could also have been written like this (each of the control statements, `if`, `unless`, `while`, `until`, `foreach`, etc., can be written as a "modifier" at the end of a statement):
{{{
my %HoL;
$HoL{$_} = [get_family $_] foreach (qw/simpsons jetsons flintstones/);
}}}
Line 1303: Line 1260:
variable (where it could be modified, for example).    {{{

%LoL = {};
for $group ( "simpsons", "jetsons", "flintstones" ) {
    @members = get_family($group);
    $HoL{$group} = [ @members ];
}

printHoL ('by get_family with temps', \%HoL);

}}}

{{{

L
oL = {}
for group in ( "simpsons", "jetsons", "flintstones" ):
  members = get_family(group)
  HoL[group] = members
variable (where it could be modified, for example).


{{{
my
%HoL;
foreach my $group (qw/simpsons jetsons flintstones/) {
    my @members = get_family $group;
    $HoL{$group} = [@members];
}

printHoL 'by get_family with temps', \%HoL;
}}}

{{{
H
oL = {}
for group in ("simpsons", "jetsons", "flintstones"):
    members = get_family(group)
    HoL[group] = members
Line 1326: Line 1280:
Line 1340: Line 1293:
Line 1342: Line 1294:
print (join (" ", @{$HoL{flintstones}}), "\n"); print "@{$HoL{flintstones}}\n");
Line 1344: Line 1296:

}}}

{{{

HoL['flintstones'] = HoL['flintstones'] + ['wilma', 'betty']
print string.join (HoL['flintstones'])
}}}

{{{
HoL['flintstones'].extend(['wilma', 'betty'])
print " ".join(HoL['flintstones'])
Line 1352: Line 1302:

}}}


Tom Christiansen says: while it's not a great efficiency, it works to
say
}}}

Note: There is a big difference between the above two examples, which create a new list, leaving the original list object unchanged; and the following two examples, which modify the original list.

{{{
HoL['flintstones'] += ['wilma', 'betty']
print " ".join(HoL['flintstones'])
printSep()
}}}
Line 1360: Line 1314:
}}}




print "@{$HoL{flintstones}}\n");
printSep();
}}}
Line 1378: Line 1329:
`flintstones`.  `flintstones`.
Line 1383: Line 1334:
print ($HoL{flintstones}[0], "\n"); print $HoL{flintstones}[0], "\n";
Line 1385: Line 1336:
Line 1392: Line 1342:
Line 1397: Line 1346:
perl:  Perl:
Line 1423: Line 1372:
printHoL ('after modifying an element', \%HoL);

}}}

{{{
HoL['simpsons'][1] = string.upper (HoL['simpsons'][1][0]) + \
                     HoL['simpsons'][1][1:]
printHoL 'after modifying an element', \%HoL;
}}}

{{{
HoL['simpsons'][1] = HoL['simpsons'][1].title()
Line 1432: Line 1379:
Line 1450: Line 1396:

{{{

foreach $family ( sort keys %HoL ) {
{{{
foreach my $family ( sort keys %HoL ) {
Line 1457: Line 1401:

}}}

{{{

k
= HoL.keys(); k.sort()
for family in k:
  print '%s: %s' % (family, string.join (HoL[family]))
}}}


{{{
families = sorted(HoL.items());
for surname, members in families:
   print '%s: %s' % (surname, " ".join(members))
Line 1466: Line 1409:

}}}


Note that sorting is in-place in python --- if you want a sorted copy of
a list, you first copy the list and then sort it.
}}}
Line 1476: Line 1413:


{{{

foreach $family ( sort keys %HoL ) {
{{{
for my $family ( sort keys %HoL ) {
Line 1482: Line 1416:
    foreach $i ( 0 .. $#{ $HoL{$family}} ) {     for my $i ( 0 .. $#{ $HoL{$family}} ) {
Line 1492: Line 1426:

k
= HoL.keys(); k.sort()
for family in k
:
  print 'family: ',
  for i in range (len (HoL[family])):
    print '%d = %s' % (i, HoL[family][i]),
  print
for surname in sorted(HoL.keys()):
   print 'surname: ',
    for i, member in enumerate(HoL[surname]):
     print '%d = %s' % (i, member),
   print
Line 1500: Line 1432:
Line 1511: Line 1442:
push (@{$HoL{'simpsons'}}, 'Lisa');
foreach $family ( sort { @{$HoL{$b}} <=> @{$HoL{$a}} } keys %HoL ) {
push (@{$HoL{simpsons}}, 'Lisa');
for my $family ( sort { @{$HoL{$b}} <=> @{$HoL{$a}} } keys %HoL ) {
Line 1519: Line 1450:

HoL['simpsons'] = HoL['simpsons'] + ['Lisa']
def cmpNumberMembers(a,b):
  return - cmp (len (HoL[a]), len (HoL[b]))
k = HoL.keys()
k.sort(cmpNumberMembers)
for family in k:
  print "%s:" % family, string.join (HoL[family])

}}}


Note that sorting is reversed here. Not sure why this is different.
HoL['simpsons'] += ['Lisa']

def keyNumberMembers(x):
  return len(x[1])

families = HoL.items()
families.sort(key=keyNumberMembers)
for surname, members in families:
    print "%s:" % surname, " ".join(members)
}}}
Line 1536: Line 1464:
HoL['simpsons'] = HoL['simpsons'] + ['Lisa']
k = HoL.keys()
k.sort(lambda a, b: - cmp (len (HoL[a]), len (HoL[b])))
for family in k:
  print "%s:" % family, string.join (HoL[family])
HoL['simpsons'] += ['Lisa']
families = HoL.items()
families.sort(key=lambda x: len(x[1]))
for surname, members in k:
   print "%s:" % surname, " ".join(members))
Line 1553: Line 1481:
foreach $family ( sort { @{$HoL{$b}} <=> @{$HoL{$a}} } keys %HoL ) {
    print "$family: ", join(", ", sort @{ $HoL{$family}}), "\n";
}

}}}

{{{

k = HoL.keys()
k.sort(lambda a, b: cmp (len (HoL[b]), len (HoL[a])))
for family in k:
  members = HoL[family]
  members.sort()
  print "%s:" % family, string.joinfields (members, ", ")


}}}
foreach my $family ( sort { @{$HoL{$b}} <=> @{$HoL{$a}} } keys %HoL ) {
    print "$family: @{[ sort @{ $HoL{$family}} ]}\n";
}

}}}

{{{

families = HoL.items()
families.sort(key=lambda x: len(x[1]))
for surname, members in families:
    members.sort()
    print "%s: %s" % (family, ", ".join(members))
}}}

Do it more like the Perl version:
{{{

for surname, members in sorted(HoL.items(), key=lambda x: len(x[1])):
   print "%s: %s" % (family, ", ".join(sorted(members)))
}}}
Line 1577: Line 1508:
The perl code in this section is taken, with permission, almost directly
from Tom Christiansen's [http://www.perl.com/perl/pdsc/ Perl Data Structures Cookbook], part 3, release 0.1, with a few typos
The Perl code in this section is taken, with permission, almost directly
from Tom Christiansen's [[http://www.perl.com/perl/pdsc/|Perl Data Structures Cookbook]], part 3, release 0.1, with a few typos
Line 1589: Line 1520:
sub printSep {   print ("=" x 60, "\n"); } sub printSep { print "=" x 60, "\n" }
Line 1594: Line 1525:
  print ("$s\n");
  for $h (@$loh)
  print "$s\n";
  foreach my $h (@$loh)
Line 1597: Line 1528:
    print ("[\n");
    for $k (sort (keys %$h))
    print "[\n";
    foreach my $k (sort keys %$h)
Line 1600: Line 1531:
      print (" $k => $h->{$k}\n");       print " $k => $h->{$k}\n";
Line 1602: Line 1533:
    print ("]\n");     print "]\n";
Line 1610: Line 1541:
import sys,string,regsub

def printSep (): print '=' * 60
import sys

def printSep():
   
print '=' * 60
Line 1615: Line 1547:
  def printH (h):
    print "["
    keys = h.keys(); keys.sort()
    for k in keys:
      print ' %s => %s' % (k, h[k])
    print "]"
  print s
  map(printH, loh)
  printSep()
    print s
    for h in loh:
        print "["
        items = h.items()
        items.sort()
        for key, val in items:
            print ' %s => %s' % (key, val)
        print "]"
    printSep()
Line 1628: Line 1560:
perl print the elements of the dictionary in the same order.

Note that sorting in perl generates a new list, while in python sorting
Perl print the elements of the dictionary in the same order.

Note that sorting in Perl generates a new list, while in python sorting
Line 1637: Line 1569:
If you wanted to do the copy, you would just do this (in Python 2.4+):
{{{
import sys

def printSep():
    print '=' * 60

def printLoH(s,loh):
    print s
    for h in loh:
        print "["
        for key, val in sorted(h.items()):
            print ' %s => %s' % (key, val)
        print "]"
    printSep()
}}}
Line 1647: Line 1595:
@LoH = ( 
       { 
          Lead => "fred", 
          Friend => "barney", 
@LoH = (
       {
          Lead => "fred",
          Friend => "barney",
Line 1669: Line 1617:
       { "Lead" : "fred",         { "Lead" : "fred",
Line 1708: Line 1656:
@LoH = ();
open (F, "cooktest.4");
while ( <F> ) {
    my ($rec) = {};
    for $field ( split ) {
my @LoH;
open my $f, "cooktest.4" or die $!;
while ( <$f> ) {
    my $rec = {};
    for my $field ( split ) {
Line 1719: Line 1667:
printLoH ('after reading from file cooktest.4', LoH);

}}}

{{{
file = open ("cooktest.4")
printLoH 'after reading from file cooktest.4', LoH;

}}}

{{{
Line 1726: Line 1673:
while 1:
 
line = file.readline()
  if not line: break
rec = {}
  for f in string.split (line):
    [key, value] = string.splitfields (f, '=')
    rec[key] = value
  LoH.append (rec)
for line in open("cooktest.4")
    rec = {}
    for field in line.split():
        key, value = field.split('=', 1)
     rec[key] = value
    LoH.append (rec)
Line 1739: Line 1684:
The behaviour of the python and perl programs is not quite the same in
the face of errors in the input format, as ??? points out:

    A field of the form `Fred=Barney=Mickey` (probably a mistake)
    will result in key="Fred" and value="Barney=Mickey" in Perl but an
    exception about the size of the lists on the splitfields line in Python.

Line 1752: Line 1689:
@LoH = ();
open (F, "cooktest.4");
while ( <F> ) {
my @LoH;
open my $f, "cooktest.4" or die $!;
while ( <$f> ) {
Line 1762: Line 1699:
# I don't know how to do this.
# For now, same as previous.

file = open ("cooktest.4")
# This builds a list of (key, value) pairs, and then creates the
# dictionary from those. A temporary pairs is used for readability
Line 1767: Line 1702:
while 1:
  line = file.readline()
  if not line: break
  rec = {}
  for f in string.split (line):
    [key, value] = string.splitfields (f, '=')
    rec[key] = value
  LoH.append (rec)
for line in open("cooktest.4")
    pairs = [field.split("=", 1) for field in line.split()]
    LoH.append(dict(pairs))
Line 1779: Line 1709:
If you really want no temporaries at all, you could (but shouldn't) use the one line list comprehension (line breaks for legibility):
{{{
LoH = [dict([field.split("=", 1)
             for field in line.split()])
                 for line in open("cooktest.4")]

printLoH ('direct read from file', LoH)
}}}
Line 1794: Line 1732:
don't know why Tom chose to make this return a list in perl, rather than
a reference to a hash. In python, returning a dictionary is definitely
don't know why Tom chose to make this return a list in Perl, rather than
a reference to a hash. Perhaps to keep the order. You can still initialize a hash with the result.
In python, returning a dictionary is definitely
Line 1812: Line 1751:
my ($line) = shift;
chop ($line);
my $line = shift;
chomp $line;
Line 1821: Line 1760:
  
Line 1831: Line 1770:
  _getnextpairsetcounter = _getnextpairsetcounter + 1   _getnextpairsetcounter += 1
Line 1844: Line 1783:
`getnextpairset`: Note the unwieldiness in python due to the fact
that it does not have increment operators.

This would be much more elegant as a class, both in python and perl.
This would be much more elegant as a class, both in python and Perl.
Line 1854: Line 1790:
Call a function returning a list (in perl) or a dictionary (in python).
In perl, the list is of the form
Call a function returning a list (in Perl) or a dictionary (in python).
In Perl, the list is of the form
Line 1863: Line 1799:
@LoH = ();
while ( %fields = getnextpairset() ) {
my @LoH;
while ( my %fields = getnextpairset() ) {
Line 1874: Line 1810:
while 1: while True:
Line 1891: Line 1827:
@LoH = ();
open (F, "cooktest.4");
while (<F>) {
        push @LoH, { parsepairs($_) };
    }

printLoH ('generated from function calls with no temps', \@LoH);


}}}

{{{

LoH = []
f = open ("cooktest.4")
LoH = []
while 1:
  line = f.readline()
  if not line: break
  LoH.append (parsepairs(line))

printLoH ('generated from function calls with no temps', LoH);
my @LoH;
open my $f, "cooktest.4" or die $!;
while (<$f>) {
    push @LoH, { parsepairs($_) };
}

printLoH 'generated from function calls with no temps', \@LoH;


}}}

{{{

LoH = [parsepairs(line) for line in open("cooktest.4")]

printLoH ('generated from function calls with no temps', LoH)
Line 1925: Line 1855:
$LoH[0]{"PET"} = "dino";
$LoH[2]{"PET"} = "santa's little helper";
$LoH[0]{PET} = "dino";
$LoH[2]{PET} = "santa's little helper";
Line 1937: Line 1867:
printLoH ('after addition of key/value pairs', LoH); printLoH ('after addition of key/value pairs', LoH)
Line 1952: Line 1882:
$LoH[0]{"LEAD"} = "fred";
print ("$LoH[0]{LEAD}\n");

$LoH[1]{"LEAD"} =~ s/(\w)/\u$1/;
print ("$LoH[1]{LEAD}\n");
$LoH[0]{LEAD} = "fred";
print $LoH[0]{LEAD}, "\n";

s/(\w)/\u$1/, print "$_\n"
  for
$LoH[1]{LEAD};
Line 1967: Line 1897:
a = LoH[1]["LEAD"]
b = string.upper (a[0])
c = a[1:]
d = b + c
LoH[1]["LEAD"] = d
# LoH[1]["LEAD"] = string.upper(LoH[1]["LEAD"][0]) + LoH[1]["LEAD"][1:]
LoH[1]["LEAD"] = LoH[1]["LEAD"].title()
Line 1995: Line 1920:
for $href ( @LoH ) { for my $href ( @LoH ) {
Line 1997: Line 1922:
    for $role ( sort keys %$href ) {     for my $role ( sort keys %$href ) {
Line 2008: Line 1933:
  print "{",
  keys = href.keys(); keys.sort()
  for role in keys:
    print "%s=%s" % (role, href[role]),
  print "}"

   print "{",
    items = href.items();
   items.sort()
    for role, val in items:
     print "%s=%s" %(role, val),
   print "}"
Line 2022: Line 1946:


Line 2029: Line 1950:
for $i ( 0 .. $#LoH ) { for my $i ( 0 .. $#LoH ) {
Line 2031: Line 1952:
    for $role ( sort keys %{ $LoH[$i] } ) {     for my $role ( sort keys %{ $LoH[$i] } ) {
Line 2040: Line 1961:

for i in range(len(LoH)):
  print i, "is {",
  keys = LoH[i].keys(); keys.sort()
  for role in keys:
    print "%s=%s" % (role, LoH[i][role]),
  print "}"
for i, elem in enumerate(LoH):
   print i, "is {",
    items = elem.items();
   items.sort()
    for role, val in items:
     print "%s=%s" % (role, val),
   print "}"
Line 2061: Line 1981:
for $i ( 0 .. $#LoH ) {
    for $role ( sort keys %{ $LoH[$i] } ) {
for my $i ( 0 .. $#LoH ) {
    for my $role ( sort keys %{ $LoH[$i] } ) {
Line 2066: Line 1986:

}}}

{{{

for i in range(len(LoH)):
  keys = LoH[i].keys(); keys.sort()
  for role in keys:
    print "elt", i, role, "is", LoH[i][role]

}}}

{{{
for i, elem in enumerate(LoH):
    items = elem.items();
   items.sort()
    for role, val in items:
     print "elt", i, role, "is", val
Line 2084: Line 2001:
The perl versions of this code have not been tested, as we don't
currently have a working version of perl and tk.
The Perl versions of this code have not been tested, as we don't
currently have a working version of Perl and Tk.
Line 2089: Line 2006:
[Links to perl/tk doc (is there any yet?)] [[http://search.cpan.org/~srezic/Tk/|Perl/Tk Documentation]]
Line 2099: Line 2016:
Line 2101: Line 2017:


}}}

{{{
}}}

{{{
Line 2109: Line 2022:


Line 2120: Line 2030:
Line 2122: Line 2031:
$hello = $top->Button('-text' => 'Hello, world',
                   '-command' => sub {print STDOUT "Hello, world\n";exit;});
$hello = $top->Button(
    
'-text'    => 'Hello, world',
    '-command' => sub {print STDOUT "Hello, world\n";exit 0;}
);
Line 2126: Line 2037:

}}}

{{{
}}}

{{{
Line 2133: Line 2042:
  print 'Hello, world'
  sys.exit (-1)
  
hello = Button (top, {'text' : 'Hello, world', 'command' : buttonFunction})
   print 'Hello, world'
    sys.exit (-1)

hello = Button(top, {'text' : 'Hello, world', 'command' : buttonFunction})
Line 2139: Line 2048:

}}}


}}}
clear
----
CategoryAdvocacy

(Based on Perl/Python Phrasebook by Jak Kirman) (Could we modify theme, so code is more visible) It all should look as here: http://www.lucasmanual.com/mywiki/PerlPythonPhrasebook Please remove the link when theme is updated thx

Contents

    1. Introduction
    2. The obvious
    3. The not so obvious
    4. Simple types
      1. Strings
        1. Creating a string
        2. Quoting
        3. Interpolation
        4. Modifying a string
    5. Importing
    6. Common tasks
      1. Reading a file as a list of lines
      2. looping over files given on the command line or stdin
    7. Some general comparisons
    8. Lists of lists
      1. Lists of lists: preliminaries
        1. Lost in the translation
      2. requires/imports
      3. Declaration of a list of lists
      4. Generation of a list of lists
        1. Reading from a file line by line
        2. Reading from a file in one go
      5. Filling a list of lists with function calls
      6. Filling a list of lists with function calls, using temporaries
      7. Adding to an existing row in a list of lists
      8. Accessing elements of a list of lists
        1. One element
        2. Another element
      9. Printing a list of lists
        1. Print a list of lists using references
        2. Print a list of lists using indices
        3. Print a list of lists element by element
        4. Print a list of lists using map
        5. Print a list of lists using map and anonymous functions
    9. Hashes/dictionaries of lists
      1. Preliminaries
      2. Declaration of a hash of lists
      3. Initializing hashes of lists
        1. Initializing hashes of lists from a file
        2. Reading into a hash of lists from a file with temporaries
        3. Initializing a hash of lists from function calls
        4. Initializing a hash of lists from function calls with temporaries
      4. Append to a list in a hash of lists
      5. Access elements of a hash of lists
        1. Access a single element
        2. Change a single element
      6. Print a hash of lists
        1. Simple print
        2. Print with indices
        3. Print sorted by number of members
        4. Print sorted by number of members, and by name within each list
    10. Lists of hashes/dictionaries
      1. Lists of hashes: preliminaries
      2. Declaration of a list of hashes
      3. Generation of a list of hashes
        1. Reading a list of hashes from a file
        2. Reading a list of hashes from a file without temporaries
        3. Generation of a list of hashes from function calls
          1. Preliminaries
          2. Generation
          3. Generation without temporaries
      4. Adding a key/value pair to an element
      5. Accessing elements of a list of hashes
      6. Printing a list of hashes
        1. Simple print
        2. Print with indices
        3. Print whole thing one at a time
  1. Interface to the Tk GUI toolkit
    1. Preliminaries
    2. Hello world label

Introduction

This phrasebook contains a collection of idioms, various ways of accomplishing common tasks, tricks and useful things to know, in Perl and Python side-by-side. I hope this will be useful for people switching from Perl to Python, and for people deciding which to choose. The first part of the phrasebook is based on Tom Christiansen's Perl Data Structures Cookbook.

I have only been working on this for a short time, so many of the translations could probably be improved, and the format could be greatly cleaned up.

I will get the data-structures cookbook translated first and then go back to clean up the code. Also, since I have been using Python for far less time than Perl, there are certainly idioms I don't know or that I will misuse. Please feel free to fix and update.

--

Other references: PLEAC.

--

Thanks to David Ascher, Guido van Rossum, Tom Christiansen, Larry Wall and Eric Daniel for helpful comments.

--

TODO:

  • break up into multiple smaller pages
  • use modern Python idioms
  • use modern Perl idioms
  • add more points of comparison
  • Use sorted() where appropriate once 2.4 has been out a while.
  • Get rid of map() where possible.
  • Simple types (strings, lists, dictionaries, etc.)
  • Common tasks (reading from a file, exception handling, splitting strings, regular expression manipulation, etc.)
  • Sections 4 and 5 of the Perl Data Structures Cookbook.
  • Vertical whitespace needs fixing.

QUESTIONS:

  • Should function and data structure names for python code be in python_style (and more appropriate/informative)?

The obvious

Python don't need no steenking semicolons.

The not so obvious

There are many Integrated Development Environments, (IDEs), for Python that are usually recommended to new users and used by seasoned Python programmers alike. The Idle IDE is a TK based GUI providing language-aware editing, debugging and command line shell for Python that is part of the Python distribution. Many of the python examples shown can be experimented with in the Idle IDE.

Simple types

Strings

Creating a string

$s = 'a string';

s = 'a string'

The $ in Perl indicates a scalar variable, which may hold a string, a number, or a reference. There's no such thing as a string variable in Python, where variables may only hold references.

  • You can program in a Pythonesque subset of Perl by restricting yourself to scalar variables and references. The main difference is that Perl doesn't do implicit dereferencing like Python does.

Quoting

$s1 = "some string";
$s2 = "a string with\ncontrol characters\n";
$s3 = 'a "quoted" string';
$s4 = "a 'quoted' string";
$s5 = qq/a string with '" both kinds of quotes/;
$s6 = "another string with '\" both kinds of quotes";
$s7 = 'a stri\ng that au\tomatically escapes backslashes';

foreach my $i ($s1, $s2, $s3, $s4, $s5, $s6, $s7)
{
  print "$i\n";
}

s1 = "some string"
s2 = "a string with\ncontrol characters\n"
s3 = 'a "quoted" string'
s4 = "a 'quoted' string"
s5 = '''a string with '" both kinds of quotes'''
s6 = "another string with '\" both kinds of quotes"
s7 = r"a stri\ng that au\tomatically escapes backslashes"

for i in (s1, s2, s3, s4, s5, s6, s7):
  print i

In both languages, strings can be single-quoted or double-quoted. In Python, there is no difference between the two except that in single- quoted strings double-quotes need not be escaped by doubling them, and vice versa. In Perl, double-quoted strings have control characters and variables interpolated inside them (see below) and single-quoted strings do not.

Both languages provide other quoting mechanisms; Python uses triple quotes (single or double, makes no difference) for multi-line strings; Python has the r prefix (r"some string" or r'some string' or r"""some string""" or r'''some string''') to indicate strings in which backslash is automatically escaped -- highly useful for regular expressions. Perl has very elaborate (and very useful) quoting mechanisms; see the operators q, qq, qw, qx, etc. in the PerlManual.

Quoting is definitely one of the areas where Perl excels.

Note that in Perl you can always replace foreach with for, which is shorter; but explicitly writing foreach is clearer, so you don't confuse it with the other kind of for.

Interpolation

$name    = "Fred";
$header1 = "Dear $name,";
$title   = "Dr.";
$header2 = "Dear $title $name,";

print "$header1\n$header2\n";

name = "Fred"
header1 = "Dear %s," % name
title = "Dr."
header2 = "Dear %(title)s %(name)s," % vars()

print header1
print header2

Perl's interpolation is much more convenient, though slightly less powerful than Python's % operator. Remember that in Perl variables are interpolated within double-quoted strings, but not single-quoted strings.

Perl has a function sprintf that uses the % conversion á la C; so the above lines could have been written:

$name    = "Fred";
$header1 = sprintf "Dear %s,", $name;
$title   = "Dr.";
$header2 = sprintf "Dear %s %s,", $name, $title;

Python's % (format) operator is generally the way to go when you have more than minimal string formatting to do (you can use + for concatenation, and [:] for slicing). It has three forms. In the first, there is a single % specifier in the string; the specifiers are roughly those of C's sprintf. The right-hand side of the format operator specifies the value to be used at that point:

x = 1.0/3.0
s = 'the value of x is roughly %.4f' % x

If you have several specifiers, you give the values in a list on the right hand side:

x = 1.0/3.0
y = 1.0/4.0
s = 'the value of x,y is roughly %.4f,%.4f' % (x, y)

Finally, you can give a name and a format specifier:

x = 1.0/3.0
y = 1.0/4.0
s = 'the value of x,y is roughly %(x).4f,%(y).4f' % vars()

The name in parentheses is used as a key into the dictionary you provide on the right-hand side; its value is formatted according to the specifier following the parentheses. Some useful dictionaries are locals() (the local symbol table), globals() (the global symbol table), and vars() (equivalent to locals() except when an argument is given, in which case it returns arg.__dict__).

PEP215 proposed a $"$var" substitution mode as an alternative to "%(var)s" % locals(), but was rejected in favour of the explicit Template class proposed in PEP292, which required no syntax changes.

Modifying a string

$s1 = "new string";        # change to new string
$s2 =~ s/\n/[newline]/g;   # substitute newlines with the text "[newline]"
$s2 = substr $s2, 0, 3,''; # extract the first 3 chars: "A s"

print "$s1\n$s2\n";

s1 = "new string"          # change to new string
                           # substitute newlines with the text "[newline]"
s2 = s2.replace("\n", "[newline]")
s2 = s2[:3]

print s1
print s2

In Perl, strings are mutable; the third assignment modifies s2. In Python, strings are immutable, so you have to do this operation a little differently, by slicing the string into the appropriate pieces.

A Python string is just an array of characters, so all of the array operations are applicable to strings. In particular, if a is an array, a[x:y] is the slice of a from index x up to, but not including, index y. If x is omitted, the slice starts at the beginning of the array; if y is omitted, the slice ends at the last element. If either index is negative, the length of the array is added to it. So a[-4:] is the last four characters of a.

In Perl, slicing is performed by giving the array a list of indices to be included in the slice. This list can be any arbitrary list and by using the range operator ..., you can get Python like slicing. If any of the indices in the list is out of bounds an undef is inserted there.

@array = ('zero', 'one', 'two', 'three', 'four')  

# slicing with range operator to generate slice index list
@slice = @array[0..2]  # returns ('zero', 'one', 'two')

# Using arbitary index lists
@slice = @array[0,3,2] # returns ('zero', 'three', 'two')
@slice = @array[0,9,1] # returns ('zero', undef, 'one')

Note: Perl range operator uses a closed interval. To get the range to the end of the array, the last index must be used as

@a=(1,2,3,4,5);
$#a;           # last index, 4, because the firs index is 0 as in Python.
@a[ 2..$#a ]   # as Python's a[2:]

Importing

In Perl a module is simply a package with a package name. ( see: perldoc -f package ). The symbols exported by the module depends on the module itself. The module may export symbols - mostly functions - by default, on request or none of them. In the latter case the module usually a class or has special access, like File::Spec. In Perl the module interfaces may vary - see the doc of the particular module.

use Module;  # imports module. It module exports symbols by default, those appeare in the package namespace.

use Module qw(symbol1 symbol2 symbol3); # preferred
or
use Module "symbol1";

from module import symbol1, symbol2, symbol3

# Allows mysymbol.func()
from module import symbol1 as mysymbol

# Unless the module is specifically designed for this kind of import, don't use it
from module import *

module.func()

Common tasks

Reading a file as a list of lines

my $filename = "cooktest1.1-1";
open my $f, $filename or die "can't open $filename: $!\n";
@lines = <$f>;

filename = "cooktest1.1-1"
f = open(filename) # Python has exceptions with somewhat-easy to 
                   # understand error messages. If the file could
                   # not be opened, it would say "No such file or 
                   # directory: %filename" which is as
                   # understandable as "can't open $filename:"
lines = f.readlines()

In Perl, variables are always preceded by a symbol that indicates their type. A $ indicates a simple type (number, string or reference), an @ indicates an array, a % indicates a hash (dictionary), and an & indicates a function.

In Python, objects must be initialized before they are used, and the initialization determines the type. For example, a = [] creates an empty array a, d = {} creates an empty dictionary.

looping over files given on the command line or stdin

The useful Perl idiom of:

while (<>) {
    ...                 # code for each line
}

loops over each line of every file named on the commandline when executing the script; or, if no files are named, it will loop over every line of the standard input file descriptor.

The Python fileinput module does a similar task:

import fileinput
for line in fileinput.input():
    ...                 # code to process each line

The fileinput module also allows inplace editing or editing with the creation of a backup of the files, and a different list of files can be given instead of taking the command line arguments.

In more recent python versions, files can act as iterators, so you would just write:

for line in open(filename):
    ...                 # code to process each line

If you want to read from standard in, then use it as the filename:

import sys
for line in open(sys.stdin):
    ...                 # code to process each line

If you want to loop over several filenames given on the command line, then you could write an outer loop over the command line. (You might also choose to use the fileinput module as noted above).

import sys
for fname in sys.argv[1:]
    for line in open(fname):
        ...                 # code to process each line

Some general comparisons

This section is under construction; for the moment I am just putting random notes here. I will organize them later.

  • Perl's regular expressions are much more accessible than those of Python being embedded in Perl syntax in contrast to Pythons import of its re module.
  • Perl's quoting mechanisms are more powerful than those of Python.
  • I find Python's syntax much cleaner than Perl's
  • I find Perl's syntax too flexible, leading to silent errors. The -w flag and use strict helps quite a bit, but still not as much as Python.

  • I like Python's small core with a large number of standard libraries. Perl has a much larger core, and though many libraries are available, since they are not standard, it is often best to avoid them for portability.
  • Python's object model is very uniform, allowing you, for example, to define types that can be used wherever a standard file object can be used.
  • Python allows you to define operators for user-defined types. The operator overloading facility in Perl is provided as an add-on---the overload module.

Lists of lists

The Perl code in this section is taken, with permission, almost directly from Tom Christiansen's Perl Data Structures Cookbook, part 1, release 0.1, with a few typos fixed.

Lists of lists: preliminaries

sub printSep { print "=" x 60, "\n" }

sub printLoL
{
  my ($s, $lol) = @_;
  print "$s\n";
  foreach my $l (@$lol) {
    print "@{$l}\n";
  }
  printSep();
}

# which is longhand for:
sub printLoL {
  print "$_[0]\n";
  print "@$_\n" foreach @{$_[1]};
  printSep();
}

# or even:
sub printLoL {
  print "$_[0]\n", map("@$_\n" , @{$_[1]}), "=" x 60, "\n";
}

# return numeric (or other) converted to string
sub somefunc { "". shift }

def printSep():
    print '=' * 60

def printLoL(s, lol):
    out = [s] + [" ".join(str(elem)) for elem in lol]
    print "\n".join(out)
    printSep()

def somefunc(i):
    return str(i)  # string representation of i

printLoL pretty-prints a list of lists.

printSep prints a line of equal signs as a separator.

somefunc is a function that is used in various places below.

Lost in the translation

In converting Perl examples so directly to Python, whilst initially useful, the casual browser should be aware that the task of printLoL is usually accomplished by just

  print lol

As Python can print default string representations of all objects.

An import of the pprint at the beginning of a module would then allow

  pprint(lol)

to substitute for all cases of printLol in a more 'pythonic' way. (pprint gives even more formatting options when printing data structures).

requires/imports

import sys

Perl's use is roughly equivalent to Python's import.

Perl has much more built in, so nothing here requires importing.

  • "Some people, when confronted with a problem, think 'I know, I'll use regular expressions.' Now they have two problems." - Jamie Zawinski

For many simple operations, Perl will use a regular expression where Pythonic code won't. Should you really need to use regular expressions, import the re module.

Declaration of a list of lists

@LoL = (
       [ "fred", "barney" ],
       [ "george", "jane", "elroy" ],
       [ "homer", "marge", "bart" ],
     );
@LoLsave = @LoL; # for later

printLoL 'Families:', \@LoL;

LoL = [["fred", "barney"],
       ["george", "jane", "elroy"],
       ["homer", "marge", "bart"]]
LoLsave = LoL[:] # See comment below

printLoL('Families:', LoL)

In Python, you are always dealing with references to objects. If you just assign one variable to another, e.g.,

a = [1, 2, 3]
b = a

you have just made b refer to the same array as a. Changing the values in b will affect a.

Sometimes what you want is to make a copy of a list, so you can manipulate it without changing the original. In this case, you want to make a new list whose elements are copies of the elements of the original list. This is done with a full array slice --- the start of the range defaults to the beginning of the list and the end defaults to the end of the list, so

a = [1, 2, 3]
b = a[:]

makes a separate copy of a.

Note that this is not necessarily the same thing as a deep copy, since references in the original array will be shared with references in the new array:

a = [ [1, 2, 3], [4, 5, 6] ]
b = a[:]
b[0][0] = 999
print a[0][0]   # prints 999

You can make a deep copy using the copy module:

import copy

a = [[1, 2, 3], [4, 5, 6]]
b = copy.deepcopy(a)
b[0][0] = 999
print a[0][0]   # prints 1

Generation of a list of lists

Reading from a file line by line

open my $f, "cookbook.data1" or die $!;
my @LoL;
while (<$f>) {
  push @LoL, [ split ];
}
printLoL "read from a file: ", \@LoL;

LoL = []
for line in open('cookbook.data1'):
    LoL.append(line[:-1].split())
printLoL('read from a file: ', LoL)

Unless you expect to be reading huge files, or want feedback as you read the file, it is easier to slurp the file in in one go.

In Perl, reading from a file-handle, e.g., <STDIN>, has a context-dependent effect. If the handle is read from in a scalar context, like $a = <STDIN>;, one line is read. If it is read in a list context, like @a = <STDIN>;the whole file is read, and the call evaluates to a list of the lines in the file.

Reading from a file in one go

open my $f, "cookbook.data1" or die $!;
@LoL = map [split], <$f>;
printLoL "slurped from a file: ", \@LoL;

LoL = [line[:-1].split() for line in open('cookbook.data1')]
printLoL("slurped from a file: ", LoL)

Thanks to Adam Krolnik for help with the Perl syntax here.

Filling a list of lists with function calls

foreach my $i ( 0 .. 9 ) {
    $LoL[$i] = [ somefunc $i ];
}
printLoL("filled with somefunc:", \@LoL);

LoL = [0] * 10  # populate the array -- see comment below

for i in range(10):
  LoL[i] = somefunc(i) # assuming that somefunc(i) returns the list that we want

printLoL('filled with somefunc:', LoL)

Or:

LoL = []

for i in range(10):
  LoL.append( somefunc(i) )

printLoL('filled with somefunc:', LoL)

Alternatively, you can use a list comprehension:

LoL = [somefunc(i) for i in range(10)]
printLoL('filled with somefunc:', LoL)

In python:

  • You have to populate the matrix -- this doesn't happen automatically in Python.
  • It doesn't matter what type the initial elements of the matrix are, as long as they exist.

Filling a list of lists with function calls, using temporaries

foreach my $i (0..9) {
    @tmp = somefunc $i;
    $LoL[$i] = [ @tmp ];
}

printLoL ("filled with somefunc via temps:", \@LoL);

for i in range(10):
    tmp = somefunc(i)
    LoL[i] = tmp

printLoL('filled with somefunc via temps:', LoL)

@LoL = map [ somefunc $_ ], 0..9;
printLoL 'filled with map', \@LoL;

LoL = map(lambda x: somefunc(x), range(10))
printLoL('filled with map', LoL)

Both Perl and Python allow you to map an operation over a list, or to loop through the list and apply the operation yourself.

I don't believe it is advisable to choose one of these techniques to the exclusion of the other --- there are times when looping is more understandable, and times when mapping is. If conceptually the idea you want to express is "do this to each element of the list", I would recommend mapping because it expresses this precisely. If you want more precise control of the flow during this process, particularly for debugging, use loops.

Tom Christiansen suggests that it is often better to make it clear that a function is being defined, by writing:

@LoL = map {[ somefunc($_) ]} 0..9;

rather than

@LoL = map [ somefunc($_) ], 0..9;

or

@LoL = map ([ somefunc($_)], 0..9);

Adding to an existing row in a list of lists

@LoL = @LoLsave;  # start afresh
push @{$LoL[0]}, "wilma", "betty";
printLoL ('after appending to first element:', \@LoL);

LoL = LoLsave[:]  # start afresh
LoL[0] += ["wilma", "betty"]
printLoL('after appending to first element:', LoL)

In python, the + operator is defined to mean concatenation for sequences. The + operator returns a new list object. Alternative to the above code that modify the original list object is to append each element of the list to LoL[0]:

LoL[0].append("wilma")
LoL[0].append("betty")

Or to extend:

LoL[0].extend(["wilma", "betty"])

Accessing elements of a list of lists

One element

$LoL[0][0] = "Fred";
print ("first element is now $LoL[0][0]\n");
printSep();

LoL[0][0] = "Fred"
print 'first element is now', LoL[0][0]
printSep()

Another element

# upcase the first letter of each word
# s/(\w)/\u$1/ is almost equivalent to Python .capitalize() [.capitalize() also lowercases the remaining letters]

$LoL[1][1] =~ s{\b(\w)}{\u$1}g;
print ("element 1, 1 is now $LoL[1][1]\n");
printSep();

LoL[1][1] = LoL[1][1].title()
print 'element 1, 1 is now', LoL[1][1]
printSep()

Perl's regexp matching and substitution is enormously powerful; see especially the new syntax for comments and whitespace inside regular expressions. Python replaced its original regular expression module some years ago with one that closely matches the capabilities of Perls, including being able to do advanced RE tasks such as calling a function to provide the data for an RE substitution, and the optional inclusion of whitespace and comments in REs.

In Python, string methods are often used where Perl would use a regex. Among these string methods are title() and capitalize().

In the context of names, title() will be used as it correctly changes "smith-jones" to "Smith-Jones" whereas capitalize() would produce "Smith-jones".

str2 = str1.capitalize() in Python is equivalent to $str2 = ucfirst(lc($str1)) in Perl.

Python's str2 = str1.title() is equivalent to Perl's:

$str2 = $str1;
$str2 =~ s{\b(\w)(\w*)\b}{\u$1\L$2\E}g;

This is because regular expression search and replace operations modify the string in place (Perl strings are mutable).

Printing a list of lists

foreach my $aref ( @LoL ) {
    print "\t [ @$aref ],\n";
}
printSep();

for a in LoL:
    print "\t [ %s ]," % a
printSep()

[Need a pointer to the % operator]

foreach my $i ( 0 .. $#LoL ) {
    print "\t [ @{$LoL[$i]} ],\n";
}
printSep();

for i in range(len(LoL)):
  print "\t [ %s ]," % LoL[i]
printSep()

The highest valid index of an array A:

  • Perl: $#A.

  • Python: len(A) - 1.

But note: The highest valid upper bound to a python range is len(A) as in

A[0:len(A)]

Size of an array A:

  • Perl: scalar(@A)

  • Python: len(A)

Note: Perl does not really have a length operator like Python. scalar() simply provides a scalar context, and in a scalar context an array returns its size. (Perl is context-sensitive and things behave differently based on their context.)

Generate range of numbers:

  • Perl: (0..9)

  • Python: range(0, 10) or simply range(10) (assumes 0 as initial)

Note: Perl uses a closed interval, while Python uses a closed-open interval. You will notice that this pattern is quite consistently applied in both languages.

[Link to details of the range function]

foreach my $i ( 0 .. $#LoL ) {
    foreach my $j ( 0 .. $#{$LoL[$i]} ) {
        print "elt $i $j is $LoL[$i][$j]\n";
    }
}
printSep();

for i, mylist in enumerate(LoL):
    for j, elem in enumerate(mylist):
        print 'elt %d %d is %s' % (i, j, elem)
printSep()

sub printLine { print "@{shift()}\n" }
map printLine($_), @LoL;
printSep();

# This is legal but Do Not Do This
def printLine(l):
    print " ".join(l)
map(printLine, LoL)
printSep()

print map "@$_\n", @LoL;
printSep();

# This is legal but Do Not Do This
map(lambda x: sys.stdout.write(" ".join(x)), LoL)
printSep()

The lack of true lambda expressions in Python is not really a problem, since all it means is that you have to provide a name for the function. Since you can define a function within another function, this does not lead to namespace clutter.

In Perl, a function can be defined inside another function, but it is defined in the namespace of the current package. If you need Python-like scoping of functions, you can create an anonymous subroutine and assign it to a lexically scoped variable:

# A Python function with its own private function
def lolprint(LoL):
   # Private function
   def lprint(alist):
      print " ".join(str(alist))
   map(lprint, LoL)

# Achieving the same in Perl
sub lolprint {
   # Private function 
   # (function reference stored in a lexically scoped variable)
   my $lprint = sub {
      my $list = shift;
      print "@$list";
   };
   map $lprint->($_), @_;
}

# In Perl, if you did this, the function is no longer private.
sub lolprint {
   # This is not a private function
   sub lprint {
      my $list = shift;
      print "@$list";
   };

   map lprint($_), @_;
}

Hashes/dictionaries of lists

The Perl code in this section is taken, with permission, almost directly from Tom Christiansen's Perl Data Structures Cookbook, part 2, release 0.1, with a few typos fixed.

Associative arrays are containers that hold pairs of elements. The first element of a pair is the key, the second is the value. In Python, the key may be of any type which is hashable (mutable data structures, like lists, sets, dictionaries, are no hashable). In Perl, the keys of a hash are converted into strings, which means if you try to use a reference as a key, it will get converted to some string representation, and you will not be able to use it as a reference anymore.

Associative arrays are sometimes called maps, dictionaries (Python, Smalltalk), or hashes (Perl).

Preliminaries

sub printSep { print "=" x 60, "\n" }

sub printHoL {
  my ($s, $hol) = @_;
  print "$s\n";
  foreach my $k (sort keys (%$hol))
  {
    my ($v) = $hol->{$k};
    print "$k: @$v\n";
  }
  printSep();
}

sub get_family {
  my ($group) = @_;
  $group =~ s/s$//;
  $group = "\u$group";
  return ("Mr-$group", "Mrs-$group", "$group-Jr");
}

def printSep():
    print '=' * 60

def printHoL(s, hol):
    print s
    for key, value in sorted(hol.items()):
        print key, ':', " ".join(value)
    printSep()

def get_family(group):
  group = group.title()
  return ["Mr-" + group, "Mrs-" + group, group + "-Jr"]

printHoL pretty-prints a hash/dictionary of lists.

printSep prints a line of equal signs as a separator.

get_family makes a list of names from a "group name", e.g., flintstones becomes [ "Mr-Flintstone", "Mrs-Flintstone", "Flintstone-Jr" ] This is for generating lists to fill a hash/dictionary.

hol.items()` converts a dictionary to a list of (key, value) pairs, eg: [('flintstones', ['fred', 'barney']), ('jetsons', ['george', 'jane', 'elroy']), ('simpsons', ['homer', 'marge', 'bart'])] This list is then sorted (sorting is in-place in python) and then the pairs in the list are unpacked and used.

If you didn't care for the results to be sorted (which is often true), you would simply do this:

sub printHoL {
  my ($s, $hol) = @_;
  print "$s\n";
  while (my ($k, $v) = each (%$hol))
  {
    print "$k: @$v\n")
  }
  printSep();
}

def printHoL(s, hol):
    print s
    for key, value in hol.items():
        print key, ':', " ".join(value)
    printSep()

Declaration of a hash of lists

%HoL = (
       flintstones        => [ "fred", "barney" ],
       jetsons            => [ "george", "jane", "elroy" ],
       simpsons           => [ "homer", "marge", "bart" ],
     );

printHoL 'names', \%HoL;

HoL = { 'flintstones' : ['fred', 'barney'],
        'jetsons' : ['george', 'jane', 'elroy'],
        'simpsons': ['homer', 'marge', 'bart'], }

printHoL('names', HoL)

In python, the print statement has very good default semantics --- most of the time, it does exactly what you want, putting a space between the arguments, and a newline at the end. If you want more control over the formatting, use the % operator [link to % operator]: rather than

print k, ':', " ".join(v)

you could use

print "%s: %s" % (k, " ".join(v))

to avoid the space before the colon.

Note that both Perl and python let you have a comma after the last element of a list. This is especially useful for automatically generated lists, where you don't want to have to worry about a special case at the end.

Larry Wall says:

  • The Perl code can be written in a more Pythonesque way, and means pretty much the identical thing. Perl always uses scalar variables for references. Note the brackets rather than the parens to get an anonymous hash constructor.

$HoL = {
       flintstones => [ "fred", "barney" ],
       jetsons     => [ "george", "jane", "elroy" ],
       simpsons    => [ "homer", "marge", "bart" ],

};
printHoL (\'names\', $HoL);

Note that since $HoL is already a ref, the \\ is no longer necessary.

Initializing hashes of lists

Initializing hashes of lists from a file

The file is assumed to consist of a sequence of lines of the form:

flintstones: fred barney wilma dino

my %HoL;
open my $f, "cookTest.2" or die $!;
while ( <$f> ) {
    next unless s/^(.*?):\s*//;
    $HoL{$1} = [ split ];
}
printHoL 'read from file cookTest.2', \%HoL;

HoL = {}
for line in open('cookTest.2'):
    try:
        surname, people = line.split(":", 1)
    except ValueError:             # can't split on ":" so no ":" in the line
        continue
    HoL[surname] = people.split()

printHoL('read from file cookTest.2', HoL)

Note that the Perl hash doesn't need to be initialized.

Reading into a hash of lists from a file with temporaries

# flintstones: fred barney wilma dino
open my $f, "cookTest.3" or die $!;
my %HoL;
while ( defined(my $line = <$f>) ) {
    next unless $line =~ /:/;
    ($who, $rest) = split /:\s*/, $line, 2;
    @fields = split ' ', $rest;
    $HoL{$who} = [ @fields ];
}

printHoL 'read from cookTest.3', \%HoL;

HoL = {}
for line in open('cookTest.3'):
    try:
        n = line.index(":")
    except ValueError:         # ":" not found
        continue
    who, rest = line[:n], line[n+1:]  # n+1 skips the colon
    fields = rest.split()
    HoL[who] = fields

printHoL ('read from cookTest.3', HoL)

Initializing a hash of lists from function calls

For each key of the hash, we call a function that creates a list, and associate the key with this list.

my %HoL;
foreach my $group (qw/simpsons jetsons flintstones/) {
    $HoL{$group} = [get_family $group];
}

printHoL 'filled by get_family', \%HoL;

HoL = {}
for group in ("simpsons", "jetsons", "flintstones"):
    HoL[group] = get_family(group)

printHoL ('filled by get_family', HoL)

The python section could [but should NOT] have been written:

HoL={}
def set(group, hol=HoL):
    hol[group] = get_family(group)
map(set, ("simpsons", "jetsons", "flintstones" ))

printHoL ('filled by get_family', HoL)

The Perl section could have been written:

my %Hol;
map {$HoL{$_} = [ get_family $_ ]} qw/simpsons jetsons flintstones/;

The Perl section could also have been written like this (each of the control statements, if, unless, while, until, foreach, etc., can be written as a "modifier" at the end of a statement):

my %HoL;
$HoL{$_} = [get_family $_] foreach (qw/simpsons jetsons flintstones/);

Initializing a hash of lists from function calls with temporaries

For each key of the hash, we call a function that creates a list, and associate the key with this list. The list is assigned to a local variable (where it could be modified, for example).

my %HoL;
foreach my $group (qw/simpsons jetsons flintstones/) {
    my @members = get_family $group;
    $HoL{$group} = [@members];
}

printHoL 'by get_family with temps', \%HoL;

HoL = {}
for group in ("simpsons", "jetsons", "flintstones"):
    members = get_family(group)
    HoL[group] = members

printHoL ('by get_family with temps', HoL)

Append to a list in a hash of lists

We want to add two strings to the list of strings indexed by the name flintstones.

push @{ $HoL{flintstones} }, "wilma", "betty";
print "@{$HoL{flintstones}}\n");
printSep();

HoL['flintstones'].extend(['wilma', 'betty'])
print " ".join(HoL['flintstones'])
printSep()

Note: There is a big difference between the above two examples, which create a new list, leaving the original list object unchanged; and the following two examples, which modify the original list.

HoL['flintstones'] += ['wilma', 'betty']
print " ".join(HoL['flintstones'])
printSep()

$HoL{'flintstones'} = [ @{ $HoL{'flintstones'} }, "wilma", "betty" ];
print "@{$HoL{flintstones}}\n");
printSep();

Access elements of a hash of lists

Access a single element

Assign to the first element of the list indexed by flintstones.

$HoL{flintstones}[0] = "Fred";
print $HoL{flintstones}[0], "\n";
printSep();

HoL['flintstones'][0] = "Fred"
print HoL['flintstones'][0]
printSep()

Tom Christiansen explains when you don't need quotes around strings in Perl:

  • It's whenever you have a bareword (identifier token) in braces. Thus

    ${blah} and $something{blah} don't need quotes.

If blah were a function then you would have to use $something{blah()} to overwrite the stringificiation. Barewords are autoquoted in braces and as the LHS operand of =&rt; as well.

Change a single element

This upcases the first letter in the second element of the array indexed by simpsons.

# another element

$HoL{simpsons}[1] =~ s/(\w)/\u$1/;

printHoL 'after modifying an element', \%HoL;

HoL['simpsons'][1] = HoL['simpsons'][1].title()

printHoL ('after modifying an element', HoL)

Various different ways of printing it out.

Simple print

Printed sorted by family name, in the format:

family1: member1-1 member1-2...
family2: member2-1 member2-2...
...

foreach my $family ( sort keys %HoL ) {
    print "$family: @{ $HoL{$family} }\n";
}
printSep();

families = sorted(HoL.items());
for surname, members in families:
    print '%s: %s' % (surname, " ".join(members))
printSep()

for my $family ( sort keys %HoL ) {
    print "family: ";
    for my $i ( 0 .. $#{ $HoL{$family}} ) {
        print " $i = $HoL{$family}[$i]";
    }
    print "\n";
}
printSep();

for surname in sorted(HoL.keys()):
    print 'surname: ',
    for i, member in enumerate(HoL[surname]):
        print '%d = %s' % (i, member),
    print
printSep()

push (@{$HoL{simpsons}}, 'Lisa');
for my $family ( sort { @{$HoL{$b}} <=> @{$HoL{$a}} } keys %HoL ) {
    print "$family: @{ $HoL{$family} }\n"
}

HoL['simpsons'] += ['Lisa']

def keyNumberMembers(x):
  return len(x[1])

families = HoL.items()
families.sort(key=keyNumberMembers)
for surname, members in families:
    print "%s:" % surname, " ".join(members)

You can use a lambda expression in python here, too, though I don't find it very readable:

HoL['simpsons'] += ['Lisa']
families = HoL.items()
families.sort(key=lambda x: len(x[1]))
for surname, members in k:
    print "%s:" % surname, " ".join(members))

foreach my $family ( sort { @{$HoL{$b}} <=> @{$HoL{$a}} } keys %HoL ) {
    print "$family: @{[ sort @{ $HoL{$family}} ]}\n";
}

families = HoL.items()
families.sort(key=lambda x: len(x[1]))
for surname, members in families:
    members.sort()
    print "%s: %s" % (family, ", ".join(members))

Do it more like the Perl version:

for surname, members in sorted(HoL.items(), key=lambda x: len(x[1])):
   print "%s: %s" % (family, ", ".join(sorted(members)))

Lists of hashes/dictionaries

The Perl code in this section is taken, with permission, almost directly from Tom Christiansen's Perl Data Structures Cookbook, part 3, release 0.1, with a few typos fixed.

Lists of hashes: preliminaries

sub printSep { print "=" x 60, "\n" }

sub printLoH
{
  my ($s, $loh) = @_;
  print "$s\n";
  foreach my $h (@$loh)
  {
    print "[\n";
    foreach my $k (sort keys %$h)
    {
      print "  $k => $h->{$k}\n";
    }
    print "]\n";
  }
  printSep();
}

import sys

def printSep():
    print '=' * 60

def printLoH(s,loh):
    print s
    for h in loh:
        print "["
        items = h.items()
        items.sort()
        for key, val in items:
            print '  %s => %s' % (key, val)
        print "]"
    printSep()

The only reason I sort the keys here is to make sure that python and Perl print the elements of the dictionary in the same order.

Note that sorting in Perl generates a new list, while in python sorting is done in-place. This means that you can avoid making a copy while sorting in python. The disadvantage is a clumsier syntax for the common case where you do want a copy. Larry Wall says that in Perl, you almost always do want the copy; I am not sure whether this is true in Python.

If you wanted to do the copy, you would just do this (in Python 2.4+):

import sys

def printSep():
    print '=' * 60

def printLoH(s,loh):
    print s
    for h in loh:
        print "["
        for key, val in sorted(h.items()):
            print '  %s => %s' % (key, val)
        print "]"
    printSep()

Declaration of a list of hashes

@LoH = (
       {
          Lead      => "fred",
          Friend    => "barney",
       },
       {
           Lead     => "george",
           Wife     => "jane",
           Son      => "elroy",
       },
       {
           Lead     => "homer",
           Wife     => "marge",
           Son      => "bart",
       }
 );

printLoH ('initial value', \@LoH);

LoH = [
       {  "Lead"      : "fred",
          "Friend"    : "barney"
       },
       {
           "Lead"     : "george",
           "Wife"     : "jane",
           "Son"      : "elroy"
       },
       {
           "Lead"     : "homer",
           "Wife"     : "marge",
           "Son"      : "bart"
       }
      ]

printLoH ('initial value', LoH)

Generation of a list of hashes

Reading a list of hashes from a file

The format of the file is expected to be:

LEAD=fred FRIEND=barney
LEAD=homer WIFE=marge
...

my @LoH;
open my $f, "cooktest.4" or die $!;
while ( <$f> ) {
    my $rec = {};
    for my $field ( split ) {
        ($key, $value) = split /=/, $field;
        $rec->{$key} = $value;
    }
    push @LoH, $rec;
}

printLoH 'after reading from file cooktest.4', LoH;

LoH = []
for line in open("cooktest.4")
    rec = {}
    for field in line.split():
        key, value = field.split('=', 1)
        rec[key] = value
    LoH.append (rec)

printLoH ('after reading from file cooktest.4', LoH)

Reading a list of hashes from a file without temporaries

my @LoH;
open my $f, "cooktest.4" or die $!;
while ( <$f> ) {
    push @LoH, { split /[\s=]+/ };
}

printLoH ('direct read from file', \@LoH);

# This builds a list of (key, value) pairs, and then creates the
# dictionary from those.  A temporary pairs is used for readability
LoH = []
for line in open("cooktest.4")
    pairs = [field.split("=", 1) for field in line.split()]
    LoH.append(dict(pairs))

printLoH ('direct read from file', LoH)

If you really want no temporaries at all, you could (but shouldn't) use the one line list comprehension (line breaks for legibility):

LoH = [dict([field.split("=", 1)
             for field in line.split()])
                 for line in open("cooktest.4")]

printLoH ('direct read from file', LoH)

Generation of a list of hashes from function calls

Preliminaries

For convenience, these functions and variables are global. getnextpairset returns the elements of the array _getnextpairsetdata. I don't know why Tom chose to make this return a list in Perl, rather than a reference to a hash. Perhaps to keep the order. You can still initialize a hash with the result. In python, returning a dictionary is definitely the way to go.

$_getnextpairsetcounter = 0;
@_getnextpairsetdata =
  ( ["lead", "fred", "daughter", "pebbles"],
    ["lead", "kirk", "first_officer", "spock", "doc", "mccoy"]);

sub getnextpairset{
  if ($_getnextpairsetcounter > $#_getnextpairsetdata) { return (); }
  return @{$_getnextpairsetdata[$_getnextpairsetcounter++]};
}

sub parsepairs{
my $line = shift;
chomp $line;
return split (/[= ]/, $line);
}

_getnextpairsetcounter = 0
_getnextpairsetdata =\
  [ {"lead" : "fred", "daughter" : "pebbles"},
    {"lead" : "kirk", "first_officer" : "spock", "doc" : "mccoy"} ]

def getnextpairset():
  global _getnextpairsetcounter
  if _getnextpairsetcounter == len(_getnextpairsetdata) : return ''
  result = _getnextpairsetdata[_getnextpairsetcounter]
  _getnextpairsetcounter += 1
  return result

def parsepairs(line):
  line = line[:-1]   # chop last character off
  dict = {}
  pairs = regsub.split (line, "[= ]")
  for i in range(0, len(pairs), 2):
    dict[pairs[i]] = pairs[i+1]
  return dict

This would be much more elegant as a class, both in python and Perl. [add a pointer to classes when we get there]

Generation

Call a function returning a list (in Perl) or a dictionary (in python). In Perl, the list is of the form ("lead","fred","daughter","pebbles"); in python, the dictionary is of the form {"lead" : "fred", "daughter" : "pebbles"}.

# calling a function  that returns a key,value list, like

my @LoH;
while ( my %fields = getnextpairset() ) {
   push @LoH, { %fields };
}
printLoH ('filled with getnextpairset', \@LoH);

LoH = []
while True:
  fields = getnextpairset()
  if not fields: break
  LoH.append (fields)

printLoH ('filled with getnextpairset', LoH)

Generation without temporaries

my @LoH;
open my $f, "cooktest.4" or die $!;
while (<$f>) {
    push @LoH, { parsepairs($_) };
}

printLoH 'generated from function calls with no temps', \@LoH;

LoH = [parsepairs(line) for line in open("cooktest.4")]

printLoH ('generated from function calls with no temps', LoH)

Adding a key/value pair to an element

$LoH[0]{PET} = "dino";
$LoH[2]{PET} = "santa's little helper";

printLoH ('after addition of key/value pairs', \@LoH);

LoH[0]["PET"] = "dino"
LoH[2]["PET"] = "santa's little helper"

printLoH ('after addition of key/value pairs', LoH)

Accessing elements of a list of hashes

$LoH[0]{LEAD} = "fred";
print $LoH[0]{LEAD}, "\n";

s/(\w)/\u$1/, print "$_\n"
  for $LoH[1]{LEAD};

printSep();

LoH[0]["LEAD"] = "fred"
print (LoH[0]["LEAD"])

LoH[1]["LEAD"] = LoH[1]["LEAD"].title()
print (LoH[1]["LEAD"])

printSep()

Printing a list of hashes

Simple print

for my $href ( @LoH ) {
    print "{ ";
    for my $role ( sort keys %$href ) {
        print "$role=$href->{$role} ";
    }
    print "}\n";
}

for href in LoH:
    print "{",
    items = href.items();
    items.sort()
    for role, val in items:
        print "%s=%s" %(role, val),
    print "}"

Note the comma after the print in the python segment -- this means "don't add a newline".

for my $i ( 0 .. $#LoH ) {
    print "$i is { ";
    for my $role ( sort keys %{ $LoH[$i] } ) {
        print "$role=$LoH[$i]{$role} ";
    }
    print "}\n";
}

for i, elem in enumerate(LoH):
    print i, "is {",
    items = elem.items();
    items.sort()
    for role, val in items:
        print "%s=%s" % (role, val),
    print "}"

Note the comma after the print in the python segment -- this means "don't add a newline". It does, however, add a space.

for my $i ( 0 .. $#LoH ) {
    for my $role ( sort keys %{ $LoH[$i] } ) {
        print "elt $i $role is $LoH[$i]{$role}\n";
    }
}

for i, elem in enumerate(LoH):
    items = elem.items();
    items.sort()
    for role, val in items:
        print "elt", i, role, "is", val

Interface to the Tk GUI toolkit

The Perl versions of this code have not been tested, as we don't currently have a working version of Perl and Tk.

[Links to tkinter doc]

Perl/Tk Documentation

Preliminaries

All the following code snippets will need these declarations first:

use Tk;

from Tkinter import *
import sys

Hello world label

$top = MainWindow->new;
$hello = $top->Button(
    '-text'    => 'Hello, world',
    '-command' => sub {print STDOUT "Hello, world\n";exit 0;}
);
$hello->pack;
MainLoop;

top = Tk()
def buttonFunction () :
    print 'Hello, world'
    sys.exit (-1)

hello = Button(top, {'text' : 'Hello, world', 'command' : buttonFunction})
hello.pack()
top.mainloop()

clear


CategoryAdvocacy

PerlPhrasebook (last edited 2012-04-26 23:22:09 by 137)

Unable to edit the page? See the FrontPage for instructions.