Entry 1933

sadvde

   

Submitted by anonymous on June 22, 2009 at 12:18 a.m.
Language: Python. Code size: 158 bytes.

class Complex:
     def __init__(self, realpart, imagpart):
         self.r = realpart
         self.i = imagpart
x = Complex(3.0, -4.5)
print x.r, x.i

This snippet took 0.00 seconds to highlight.

Back to the Entry List or Home.

Delete this entry (admin only).