[Python-de] Wie mach ich das in python:
Christian Klinger
cklinger at novareto.de
Mit Jan 5 11:21:23 CET 2005
Hallo
ich bin gerade dabei ein altes perl script zu pythonisieren.
Hierbei treffe ich auf folgendes Konstrukt (ps: leider wenig Ahnung was
das macht):
####################################
my $ts=time;
print $ts;
my @ts = ( (($ts & 0xff000000) >> 24),
(($ts & 0xff0000) >> 16),
(($ts & 0xff00) >> 8),
(($ts & 0xff)) );
print "\n";
print @ts;
print "\n";
###################################
Kann mir jemand sagen was das macht, und wie kann man das in Python
umsetzen?
mfg Christian