Skip to content

Commit 9a84f72

Browse files
committed
Add CAN
1 parent 27966cd commit 9a84f72

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

great_circle.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from math import pi, sin, asin, cos, sqrt
22

3-
JFK = ("40.641108", "-73.778246")
4-
LAX = ("33.941544", "-118.408755")
5-
SLC = ("40.788139", "-111.980268")
3+
JFK = ('40.641108', '-73.778246')
4+
LAX = ('33.941544', '-118.408755')
5+
SLC = ('40.788139', '-111.980268')
6+
CAN = ('21.040231', '-86.873585')
67

78

89
class Point(object):
@@ -79,7 +80,7 @@ def __del__(self):
7980
"""
8081
Destructor called when object destroyed by Python GC.
8182
"""
82-
print("__del__() method called on {:.2f}.".format(self))
83+
print("__del__() method called on {:f}.".format(self))
8384

8485
def __eq__(self, other):
8586
"""

0 commit comments

Comments
 (0)