-
Notifications
You must be signed in to change notification settings - Fork 3
/
Julian Date in Python - Dev Shed.htm
2086 lines (1592 loc) · 91.4 KB
/
Julian Date in Python - Dev Shed.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- saved from url=(0081)http://forums.devshed.com/python-programming-11/julian-date-in-python-410345.html -->
<html dir="ltr" lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Julian Date in Python - Dev Shed</title>
<meta name="description" content="Julian Date in Python- Python Programming. Visit Dev Shed to discuss Julian Date in Python">
<meta name="keywords" content="Python, Programming, Julian, Date, in, Python">
<meta name="msvalidate.01" content="51D66E779B8BEF5ACEC1CD348C9D6B7F">
<!--<base href="http://forums.devshed.com/">--><base href=".">
<script type="text/javascript" async="" src="./Julian Date in Python - Dev Shed_files/ga.js"></script><script src="./Julian Date in Python - Dev Shed_files/quant.js" async="" type="text/javascript"></script><script type="text/javascript" src="./Julian Date in Python - Dev Shed_files/unminified.js"></script>
<!-- CSS Stylesheet -->
<style type="text/css">
<!--
/* vBulletin 3 CSS For Style 'New Dev Shed Style' (styleid: 7) */
body
{
background-color: #FFFFFF;
color: #000000;
font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
margin: 0px;
}
a:link
{
color: #000020;
}
a:visited
{
color: #000020;
}
a:hover, a:active
{
color: #FF4400;
}
.page
{
background-color: #FFFFFF;
color: #000000;
}
td, th, p, li
{
font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.tborder
{
background-color: #FFFFFF;
color: #000000;
border: 1px solid #A4C0E2;
}
.tcat
{
background-color: #CBCB9F;
color: #000000;
font: bold 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
padding:4px;
}
.tcat a:link
{
color: #000000;
text-decoration: none;
}
.tcat a:visited
{
color: #000000;
text-decoration: none;
}
.tcat a:hover, .tcat a:active
{
color: #000000;
text-decoration: underline;
}
.thead
{
background-color: #E0E0C7;
color: #000000;
font: bold 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.thead a:link
{
color: #333333;
}
.thead a:visited
{
color: #333333;
}
.thead a:hover, .thead a:active
{
color: #333333;
}
.tfoot
{
background-color: #E0E0C7;
color: #000000;
}
.tfoot a:link
{
color: #333333;
}
.tfoot a:visited
{
color: #333333;
}
.tfoot a:hover, .tfoot a:active
{
color: #333333;
}
.alt1, .alt1Active
{
background-color: #EFEFEF;
color: #000000;
}
.alt2, .alt2Active
{
background-color: #F4F4F4;
color: #000000;
font-weight: normal;
font-style: normal;
font-variant: normal;
}
.wysiwyg
{
background-color: #F5F5FF;
color: #000000;
font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
textarea, .bginput
{
font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.button
{
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
select
{
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
option, optgroup
{
font-size: 11px;
font-family: verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.smallfont
{
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.time
{
color: #000033;
}
.navbar
{
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.highlight
{
color: #FF0000;
font-weight: bold;
}
.fjsel
{
background-color: #3E5C92;
color: #E0E0F6;
}
.fjdpth0
{
background-color: #F7F7F7;
color: #000000;
}
.panel
{
background: #E4E7F5 url(http://images.devshed.com/fds/gradients/gradient_panel.gif) repeat-x top left;
color: #000000;
padding: 10px;
border: 2px outset;
}
.panelsurround
{
background: #D5D8E5 url(http://images.devshed.com/fds/gradients/gradient_panelsurround.gif) repeat-x top left;
color: #000000;
}
legend
{
color: #22229C;
font: 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
}
.vbmenu_control
{
background-color: #738FBF;
color: #FFFFFF;
font: bold 11px tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
padding: 3px 6px 3px 6px;
white-space: nowrap;
}
.vbmenu_control a:link
{
color: #FFFFFF;
text-decoration: none;
}
.vbmenu_control a:visited
{
color: #FFFFFF;
text-decoration: none;
}
.vbmenu_control a:hover, .vbmenu_control a:active
{
color: #FFFFFF;
text-decoration: underline;
}
.vbmenu_popup
{
background-color: #FFFFFF;
color: #000000;
border: 1px solid #0B198C;
}
.vbmenu_option
{
background-color: #BBC7CE;
color: #000000;
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
white-space: nowrap;
cursor: pointer;
}
.vbmenu_option a:link
{
color: #22229C;
text-decoration: none;
}
.vbmenu_option a:visited
{
color: #22229C;
text-decoration: none;
}
.vbmenu_option a:hover, .vbmenu_option a:active
{
color: #FFFFFF;
text-decoration: none;
}
.vbmenu_hilite
{
background-color: #8A949E;
color: #FFFFFF;
font: 11px verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
white-space: nowrap;
cursor: pointer;
}
.vbmenu_hilite a:link
{
color: #FFFFFF;
text-decoration: none;
}
.vbmenu_hilite a:visited
{
color: #FFFFFF;
text-decoration: none;
}
.vbmenu_hilite a:hover, .vbmenu_hilite a:active
{
color: #FFFFFF;
text-decoration: none;
}
/* ***** small padding on 'thead' elements ***** */
td.thead, div.thead { padding: 4px; }
/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }
/* ***** don't change the following ***** */
form { display: inline; }
label { cursor: default; }
.normal { font-weight: normal; }
.inlineimg { vertical-align: middle; }
A.network:link, A.network:visited, A.network:active { font-family: Verdana, Arial, Helvetica; font-size: 8pt; color: #000000; text-decoration: none;}
A.network:hover { color:#000000; text-decoration: underline;}
.overlink {
cursor:pointer;
cursor:hand;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
text-decoration: underline;
font-weight: bold;
}
.title, A.title:link, A.title:visited, A.title:active {
font-family: "Trebuchet MS", "Impact", Helvetica,Arial, Verdana, sans-serif ;
font-size: 40px;
color: #000000;
font-weight: bold;
text-decoration: none;
}
.title2, A.title2:link, A.title2:visited, A.title2:active {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 20px;
color: #000000;
font-weight: bold;
text-decoration: none;
vertical-align: top;
}
.smalltitle, A.smalltitle:link, A.smalltitle:visited, A.smalltitle:active {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 28px;
color: #000000;
font-weight: bold;
text-decoration: none;
}
.art_title, A.art_title:link, A.art_title:visited, A.art_title:active {
font-family: Verdana, Arial, Helvetica, sans-serif;
text-decoration: none;
cursor:pointer;
cursor:hand;
}
.showthreadh1
{
font-family: Verdana, Arial, Helvetica, sans-serif;
margin:0;
font-size: 14px;
font-weight: bold;
display: inline;
}
.navbar2 {
font-size: 11px;
margin-top:5px;
margin-bottom:5px;
}
.navbar3 {
margin-top:7px;
}
.boxAds, a.boxAds:link, a.boxAds:visited, a.boxAds:active, a.boxAds:hover{
background-color: #000066;
font-weight: bold;
font-size: 8pt;
color: #FFFFCC;
text-decoration : underline;
}
.tightline {line-height: .5}
.top {
cursor:pointer; cursor:hand;
text-decoration: underline; color:#000000;
font-family: Verdana,Arial,Helvetica;
font-size: 10px;
}
.search {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #333333;
text-decoration: none;
}
.search2 {
font-family: Geneva, Arial, Helvetica, san-serif;
font-size: 15px;
font-weight: bold;
color: #FFFFFF;
text-decoration: none;
}
.search3 {
font-family: Geneva, Arial, Helvetica, san-serif;
font-size: 12px;
font-weight: bold;
color: #FFFFFF;
}
.footlink, .footlink:link, .footlink:visited, .footlink:hover, .footlink:active {
text-decoration: underline;
color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bolder;
cursor:pointer;
cursor:hand;
}
.foottxt {
color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bolder;
}
.newlinks {
cursor:pointer; cursor:hand;
text-decoration: underline; color:blue;
font-family: Verdana,Arial,Helvetica;
font-size: 10px;
}
.blacklinks, .blacklinks:link, .blacklinks:visited, .blacklinks:hover, .blacklinks:active {
cursor:hand;
text-decoration: underline;
color:#000000;
cursor:pointer;
cursor:hand;
}
.mainbckgrnd {
background: url(http://images.devshed.com/fds/current/devshed.jpg);
background-repeat: no-repeat;
background-attachment:
fixed
background-position: 123px 153px;
}
.ads-ads {background:#ccc; background:rgba(0, 0, 0, .15); clear: both; }
.ads-ads ul.ad-block-header {list-style:none;margin:0 0 0 0;padding:0;max-width:1140px; margin: 0 auto;}
.ads-ads h2{text-align:center;font-weight:700; padding:10px 0; font-family: 'Droid Sans', Helvetica, Arial, sans-serif;}
.ads-ads h2 a{color:#0D6B93; }
.ads-ads ul.ad-block-header img{max-width: 100%;}
.ads-ads ul.ad-block-header li {float:left;width:20%;text-align:center; font-family: 'Droid Sans', Helvetica, Arial, sans-serif;}
.ads-ads ul.ad-block-header li h5 {padding: 10px 5px;line-height: 1em;}
.ads-ads ul.ad-block-header li h5 a{color:#0D6B93;}
.coming-soon-heading {font:normal normal 4em 'Exo', sans-serif; color: #0B9743; text-align: center; padding-top: 15px; border-top: 1px solid #333; border-top: 1px solid rgba(33,33,33,.50); }
-->
</style>
<!-- / CSS Stylesheet -->
<script type="text/javascript">
<!--
var SESSIONURL = "";
var IMGDIR_MISC = "http://images.devshed.com/fds/misc";
// -->
</script>
<script type="text/javascript" src="./Julian Date in Python - Dev Shed_files/vbulletin_global.js"></script>
<script type="text/javascript" src="./Julian Date in Python - Dev Shed_files/spellChecker.js"></script>
<meta name="verify-v1" content="QnBv+OADLWvrKmdnMiRjmClE4zdJtP0Y+aLTEr//fII=">
<meta name="google-site-verification" content="sx3gn-JfAwaPP3-Yor05syXm1iP95XALC-yAck9qI6g">
<script charset="utf-8" type="text/javascript">
// Removed 876 from list because we are now hardcoding it to appear everytime.
var testArray = [862,863,864,865,867,868,869,870,871,872,873,875,947];
function Shuffle(o) {
for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
return o;
};
Shuffle(testArray);
</script>
<!-- Code to insert ads into the sidebar -->
<script type="text/javascript" async="true">
$(document).ready(function() {
var ad3 = '<li><a onclick="switchUrl(\'http://services.seekdotnet.com/aff.php?aff=209\', event)" rel="nofollow" target="_blank" href="http://www.seekdotnet.com"><img src="http://images.devshed.com/ds/stories/Seekdotnet_125x125.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/seekdotnet-reviews-535858.html">SEEKDOTNET Reviews</a></h5></li>';
var ad4 = '<li><a onclick="switchUrl(\'http://www.amazon.com/b?_encoding=UTF8&camp=1789&creative=9325&linkCode=ur2&node=229667&site-redirect=&tag=develshedinc-20\', event)" rel="nofollow" target="_blank" href="http://www.Amazon.com"><img src="http://images.devshed.com/ds/stories/Amazon.gif" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/amazon-reviews-535859.html">Amazon Reviews</a></h5></li>';
var ad5 = '<li><a onclick="switchUrl(\'http://www.ironspeed.com/products/Registration.aspx?c=DevShed\', event)" rel="nofollow" target="_blank" href="http://www.IronSpeed.com"><img src="http://images.devshed.com/ds/stories/DevShed.2012.10.15.125x125-Oneliner-Banner-1.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/iron-speed-reviews-535860.html">Iron Speed Reviews</a></h5></li>';
var ad6 = '<li><a onclick="switchUrl(\'http://www.tkqlhce.com/click-6233268-10458283\', event)" rel="nofollow" target="_blank" href="http://www.wrox.com"><img src="http://images.devshed.com/ds/stories/Wiley.gif" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/wiley-books-reviews-535861.html">Wiley Books Reviews</a></h5></li>';
var ad7 = '<li><a onclick="switchUrl(\'http://click.linksynergy.com/fs-bin/click?id=pDiyWjC1oVc&offerid=145244.10000124&subid=0&type=4\', event)" rel="nofollow" target="_blank" href="http://www.peachpit.com"><img src="http://images.devshed.com/ds/stories/PeachPit_NewImage2013_2.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/pearson-peach-pit-press-reviews-535863.html">Pearson Peach Pit Reviews</a></h5></li>';
var ad8 = '<li><a onclick="switchUrl(\'http://click.linksynergy.com/fs-bin/click?id=pDiyWjC1oVc&offerid=234822.10000003&type=4&subid=0\', event)" rel="nofollow" target="_blank" href="http://www.tigerdirect.com"><IMG border=0 alt="Hpage_125x125" src="http://images.devshed.com/ds/stories/TigerDirect.gif"></a><h5><a href="http://forums.aspfree.com/guide-77/tiger-direct-reviews-535864.html">Tiger Direct Reviews</a></h5><IMG border=0 width=1 height=1 alt=button src="http://ad.linksynergy.com/fs-bin/show?id=pDiyWjC1oVc&bids=234822.10000003&type=4&subid=0"></li>';
var ad9 = '<li><a onclick="switchUrl(\'http://www.jdoqocy.com/click-6233268-10706050\', event)" rel="nofollow" target="_blank" href="http://www.register.com"><img src="http://images.devshed.com/ds/stories/Register.com.gif" alt="Domain And Email Banner" border="0"/></a><h5><a href="http://forums.aspfree.com/guide-77/register-com-reviews-535865.html">Register.com Reviews</a></h5></li>';
var ad10 = '<li><a onclick="switchUrl(\'http://www.dpbolvw.net/click-6233268-10685979\', event)" rel="nofollow" target="_blank" href="http://www.adobe.com"><img src="http://images.devshed.com/ds/stories/Adobe.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/adobe-reviews-535866.html">Adobe Reviews</a></h5></li>';
var ad11 = '<li><a onclick="switchUrl(\'http://www.kqzyfj.com/click-6233268-11114982\', event)" rel="nofollow" target="_blank" href="http://www.autodesk.com"><img src="http://images.devshed.com/ds/stories/AutoDesk.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/autodesk-reviews-535867.html">AutoDesk Reviews</a></h5></li>';
var ad12 = '<li><a onclick="switchUrl(\'http://www.lynda.com/home/otl.aspx?utm_medium=affiliate&utm_source=ldc_affiliate&utm_content=35&utm_campaign=CD14616&bid=35&aid=CD14616&opt=\', event)" rel="nofollow" target="_blank" href="http://www.lynda.com"><img src="http://images.devshed.com/ds/stories/Lynda.com_Watch_Videos_Now.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/lynda-com-reviews-537462.html">lynda.com Reviews</a></h5></li>';
var ad13 = '<li><a onclick="switchUrl(\'http://www.dpbolvw.net/click-6233268-10654233\', event)" rel="nofollow" target="_blank" href="http://www.drivershq.com"><img src="http://images.devshed.com/ds/stories/DriverDetective.gif" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/driver-detective-reviews-535869.html">Driver Detective Reviews</a></h5></li>';
var ad14 = '<li><a onclick="switchUrl(\'http://www.kqzyfj.com/click-6233268-10459963\', event)" rel="nofollow" target="_blank" href="http://www.dreamtemplate.com"><img src="http://images.devshed.com/ds/stories/DTemplates_New.gif" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/dream-templates-reviews-535870.html">Dream Template Reviews</a></h5></li>';
var ad15 = '<li><a onclick="switchUrl(\'http://www.kqzyfj.com/click-6233268-10575701\', event)" rel="nofollow" target="_blank" href="http://www.kaspersky.com"><img src="http://images.devshed.com/ds/stories/Kaspersky.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/kaspersky-labs-reviews-535871.html">Kaspersky Labs Reviews</a></h5></li>';
var ad16 = '<li><a onclick="switchUrl(\'http://www.tkqlhce.com/click-6233268-11099501\', event)" rel="nofollow" target="_blank" href="http://www.logmein.com"><img src="http://images.devshed.com/ds/stories/Logmein.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/logmein-535872.html">LogMeIn Reviews</a></h5></li>';
var ad17 = '<li><a onclick="switchUrl(\'http://www.kqzyfj.com/click-6233268-10441371\', event)" rel="nofollow" target="_blank" href="http://www.trendmicro.com"><img src="http://images.devshed.com/ds/stories/TrendMicro_2.gif" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/trend-micro-reviews-537052.html">Trend Micro Reviews</a></h5></li>';
var ad18 = '<li><a onclick="switchUrl(\'http://www.dpbolvw.net/click-6233268-11014883\', event)" rel="nofollow" target="_blank" href="http://www.pandasecurity.com"><img src="http://images.devshed.com/ds/stories/PandaCloud_1-10-2013.gif" alt="Cloud Office Protection" border="0"/></a><h5><a href="http://forums.aspfree.com/guide-77/panda-security-reviews-535874.html">Panda Security Reviews</a></h5></li>';
var ad21 = '<li><a onclick="switchUrl(\'http://send.onenetworkdirect.net/z/327515/CD174619\', event)" rel="nofollow" target="_blank" href="http://www.driverhive.com"><img src="http://images.devshed.com/ds/stories/DriverHive_125x125.gif" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/driverhive-reviews-537491.html">DriverHive Reviews</a></h5></li>';
var ad22 = '<li><a onclick="switchUrl(\'http://www.dpbolvw.net/click-6233268-10950928\', event)" rel="nofollow" target="_blank" href="http://www.clickatell.com"><img src="http://images.devshed.com/ds/stories/Clickatell_New.jpg" alt="" border="0"/></a><h5><a href="http://forums.aspfree.com/guide-77/clickatell-reviews-535878.html">Clickatell Reviews</a></h5></li>';
var ad23 = '<li><a onclick="switchUrl(\'http://www.tkqlhce.com/click-6233268-10430939\', event)" rel="nofollow" target="_blank" href="http://www.mozy.com"><img src="http://images.devshed.com/ds/stories/Mozy.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/mozy-reviews-535879.html">Mozy Reviews</a></h5></li>';
var ad24 = '<li><a onclick="switchUrl(\'http://www.kqzyfj.com/click-6233268-10648897\', event)" rel="nofollow" target="_blank" href="http://www.avg.com"><img src="http://images.devshed.com/ds/stories/AVG_New.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/avg-technologies-reviews-535880.html">AVG Reviews</a></h5></li>';
var ad25 = '<li><a onclick="switchUrl(\'http://www.anrdoezrs.net/click-6233268-10778007\', event)" rel="nofollow" target="_blank" href="http://www.Elance.com"><img src="http://images.devshed.com/ds/stories/Elance.gif" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/elance-reviews-537523.html">Elance Reviews</a></h5></li>';
var ad27 = '<li><a onclick="switchUrl(\'http://send.onenetworkdirect.net/z/345819/CD174619/\', event)" rel="nofollow" target="_blank" href="http://www.microsoftstore.com"><img src="http://images.devshed.com/ds/stories/Microsoft_Store.jpg" border="0" /></a><h5><a href="http://forums.aspfree.com/guide-77/microsoft-store-reviews-535950.html">Microsoft Store Reviews</a></h5></li>';
var ad28 = '<a onclick="switchUrl(\'https://www.majesticseo.com/\', event)" rel="nofollow" target="_blank" href="http://www.majesticseo.com"><img src="http://images.devshed.com/ds/stories/majesticseo.png" alt="Majesticseo"/></a><h5><a href="http://forums.seochat.com/guide-90/majesticseo-reviews-465418.html">MajesticSEO Reviews</a></h5>';
var adArray = new Array(ad3, ad4, ad5, ad6, ad7, ad8, ad9, ad10, ad11, ad12, ad13, ad14, ad15, ad16, ad17, ad18, ad21, ad22, ad23, ad24, ad25, ad27);
var adUrls = new Array();
Shuffle(adArray);
adUrls.push(ad28);
for (var i = 0; i < adArray.length; i++) {
if (i <= 3) {
adUrls.push(adArray[i]);
}
}
$.ajax({
url: "ajax-get-ads.php",
dataType: "html",
type: "POST",
data: { 'adurls' : adUrls },
timeout: 60000, // 1000 = 1 sec
success: function(data) {
$('#ads-wrap').html(data);
},
error: function(jqXHR, textStatus, errorThrown) {
console.log(textStatus + ": " + errorThrown);
console.log(jqXHR);
}
});
});
</script>
<!-- END: Code to insert ads into the sidebar -->
<link href="./Julian Date in Python - Dev Shed_files/styles.css" rel="stylesheet" type="text/css">
<link rel="SHORTCUT ICON" href="http://forums.devshed.com/images/favicon2.ico">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<script type="text/javascript">
var _qevents = _qevents || [];
(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-290307-1']);
_gaq.push(['_setDomainName', '.devshed.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body link="#000000" vlink="#000000" alink="#000000" leftmargin="0" topmargin="0">
<a name="top"></a>
<div align="center">
<table width="98%" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td bgcolor="#FFFFFF">
<table width="730" border="0" align="right" cellpadding="0" cellspacing="0">
<tbody><tr>
<td width="20"><img src="./Julian Date in Python - Dev Shed_files/devshed-01.jpg" width="20" height="21"></td>
<td width="35" bgcolor="#406c47"> </td>
<td width="675" valign="middle" bgcolor="#406c47"><center><style type="text/css">
<!--
#topnavbox {
clear: both;
text-align:center;
font-size: 0.8em;
font-family:Arial, Helvetica, sans-serif;
}
.topnavtxt {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
text-decoration: normal;
padding: 0;
margin: 0;
color: #ffffff;\n}
-->
</style>
<div id="topnavbox" align="center">
<div class="topnavtxt">
<script type="text/javascript" language="JavaScript">
<!--
function ttgo1(url)
{
if (url.length > 1)
{
document.location.href = "http://" + url + "/";
}
}
function ttfstart1(name)
{
document.write('<div style="display: inline; top: 0; padding:0; border: 0px;"><B>' + name + '</b> <form style="display: inline; margin: 0;" name="jumptt"><select style="font-size: 10px; font-family: Verdana, Arial;" name="menutt" onChange="javascript:ttgo(this.options[this.selectedIndex].value);">');
document.write('<option value="" selected> - Select - </option>');
}
function ttfend1()
{
document.write('</select></form></div>');
}
function ttfadd1(name, val)
{
document.write('<option value="' + val + '">' + name + '</option>');
}
function ttspace1()
{
document.write(' ');
}
ttfstart1('Tutorials:');
ttfadd1('Dev Shed', 'www.devshed.com');
ttfadd1('ASP Free', 'www.aspfree.com');
ttfadd1('Dev Articles', 'www.devarticles.com');
ttfadd1('Dev Hardware', 'www.devhardware.com');
ttfadd1('SEO Chat', 'www.seochat.com');
ttfadd1('Web Hosting', 'webhosting.devshed.com');
ttfadd1('Codewalkers', 'www.codewalkers.com');
ttfend1();
ttspace1();
ttfstart1('Resources:');
ttfadd1('Scripts', 'www.scripts.com');
ttfadd1('Tutorialized', 'www.tutorialized.com');
ttfadd1('Dev Mechanic', 'tools.devshed.com');
ttfend1();
ttspace1();
ttfstart1('Forums:');
ttfadd1('Dev Shed Forums', 'forums.devshed.com');
ttfadd1('ASP Free Forums', 'forums.aspfree.com');
ttfadd1('Dev Articles Forums', 'forums.devarticles.com');
ttfadd1('Dev Hardware Forums', 'www.devhardware.com/forums');
ttfadd1('SEO Chat Forums', 'forums.seochat.com');
ttfadd1('Codewalkers Forums', 'forums.codewalkers.com');
ttfadd1('Tutorialized Forums', 'forums.tutorialized.com');
ttfend1();
//-->
</script><div style="display: inline; top: 0; padding:0; border: 0px;"><b>Tutorials:</b> <form style="display: inline; margin: 0;" name="jumptt"><select style="font-size: 10px; font-family: Verdana, Arial;" name="menutt" onchange="javascript:ttgo(this.options[this.selectedIndex].value);"><option value="" selected=""> - Select - </option><option value="www.devshed.com">Dev Shed</option><option value="www.aspfree.com">ASP Free</option><option value="www.devarticles.com">Dev Articles</option><option value="www.devhardware.com">Dev Hardware</option><option value="www.seochat.com">SEO Chat</option><option value="webhosting.devshed.com">Web Hosting</option><option value="www.codewalkers.com">Codewalkers</option></select></form></div> <div style="display: inline; top: 0; padding:0; border: 0px;"><b>Resources:</b> <form style="display: inline; margin: 0;" name="jumptt"><select style="font-size: 10px; font-family: Verdana, Arial;" name="menutt" onchange="javascript:ttgo(this.options[this.selectedIndex].value);"><option value="" selected=""> - Select - </option><option value="www.scripts.com">Scripts</option><option value="www.tutorialized.com">Tutorialized</option><option value="tools.devshed.com">Dev Mechanic</option></select></form></div> <div style="display: inline; top: 0; padding:0; border: 0px;"><b>Forums:</b> <form style="display: inline; margin: 0;" name="jumptt"><select style="font-size: 10px; font-family: Verdana, Arial;" name="menutt" onchange="javascript:ttgo(this.options[this.selectedIndex].value);"><option value="" selected=""> - Select - </option><option value="forums.devshed.com">Dev Shed Forums</option><option value="forums.aspfree.com">ASP Free Forums</option><option value="forums.devarticles.com">Dev Articles Forums</option><option value="www.devhardware.com/forums">Dev Hardware Forums</option><option value="forums.seochat.com">SEO Chat Forums</option><option value="forums.codewalkers.com">Codewalkers Forums</option><option value="forums.tutorialized.com">Tutorialized Forums</option></select></form></div>
</div>
</div>
</center></td>
</tr>
</tbody></table>
</td>
</tr>
<tr align="center">
<td valign="top" class="mainbckgrnd" height="80">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody><tr align="right"><td height="20" colspan="3"><table cellpadding="0" cellspacing="0"><tbody><tr><td></td></tr></tbody></table></td></tr>
<tr align="left">
<td width="30" height="58"></td>
<td valign="middle" colspan="2" class="pagename">
<table cellpadding="0" align="left">
<tbody><tr>
<td width="80" align="left"><a rel="nofollow" href="http://forums.devshed.com/" class="title" title="Dev Shed"> </a></td><td valign="top"><a rel="nofollow" href="http://forums.devshed.com/" class="title" title="Dev Shed"></a>
<a rel="nofollow" href="http://forums.devshed.com/" class="smalltitle" title="Python Programming">Python Programming</a></td>
</tr>
</tbody></table>
</td>
</tr>
<!-- <tr><td colspan=3> </td></tr> -->
</tbody></table>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF">
<table width="917" border="0" align="right" cellpadding="0" cellspacing="0">
<tbody><tr>
<td width="20"><img src="./Julian Date in Python - Dev Shed_files/devshed-02.jpg" width="20" height="29"></td>
<td width="1" bgcolor="#406c47"> </td>
<td width="901" bgcolor="#406c47"><table width="901" border="0" cellpadding="0" cellspacing="0">
<tbody><tr>
<td class="txtwhite" valign="middle">
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/">Forums</a><span class="foottxt">: »</span>
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/register.php?action=signup">Register</a><span class="foottxt"> « | </span>
<a class="footlink" rel="dofollow" href="http://seotools.devshed.com/">Free Tools</a><span class="foottxt"> | </span>
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/usercp.php">User CP</a><span class="foottxt"> | </span>
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/dev-shed-gaming-center-143/">Games</a><span class="foottxt"> | </span>
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/calendar.php">Calendar</a><span class="foottxt"> | </span>
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/memberlist.php">Members</a><span class="foottxt"> | </span>
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/forum-rules-guidelines-127/">FAQs</a><span class="foottxt"> | </span>
<a class="footlink" rel="nofollow" href="http://forums.devshed.com/sitemap/">Sitemap</a><span class="foottxt"> | </span>
<span class="footlink" onclick="window.location='http://www.developershed.com/esupport/'">Support</span><span class="foottxt"> | </span>
<a rel="nofollow" href="http://forums.devshed.com/rss/"><img src="./Julian Date in Python - Dev Shed_files/forum-rss3.gif" width="24" height="21" border="0" vspace="0" align="absmiddle"></a>
</td>
<td><div align="right">
<!-- TOP SEARCH BOX -->
<table width="100%" border="0" align="right" cellpadding="0" cellspacing="0">
<tbody><tr>
<td height="26" align="right" style="float:right;width:240px;_width:240px;padding-right:3px;padding-top:3px;_padding-top:0px;_padding-right:3px;"><form style="display:inline;" action="http://forums.devshed.com/googlecse.php" id="cse-search-box"><input type="hidden" name="cx" value="partner-pub-5054715448040917:7689756459"><input type="hidden" name="cof" value="FORID:11"><input type="hidden" name="ie" value="ISO-8859-1"><input type="text" name="q" size="20" style="border: 1px solid rgb(126, 157, 185); padding: 2px; background-image: url(http://www.google.com/cse/intl/en/images/google_custom_search_watermark.gif); background-color: rgb(255, 255, 255); background-position: 0% 50%; background-repeat: no-repeat no-repeat;"> <input type="image" style="margin-top: -3px;_margin-top:2px;" align="absmiddle" src="./Julian Date in Python - Dev Shed_files/google_search.gif" height="20" width="56" name="sa" value="Search"><script type="text/javascript" src="./Julian Date in Python - Dev Shed_files/brand"></script><input name="siteurl" type="hidden" value="forums.devshed.com/python-programming-11/julian-date-in-python-410345.html"><input name="ref" type="hidden" value="us.yhs4.search.yahoo.com/yhs/search?hspart=avg&hsimp=yhs-fh_lsonsw&type=dis_dn&param1=rVLbitswEP0a681Gd0sPfkjiBAptWbYpfVxGFztbYq8rO6H79x2Zpt0WCktZMJoZ6WhG5xz7x9AUtbOslXujebnXrSzlRu_KTSvrUhrF7daa_cHuijqQ0DBRGymYoopSSsLchJEyRs4w9k0cyYD9XBBWWqsU10xy6kFE4Mx1UWmwktnSGekC-M5Kbl3dec3rqGNtnHe1NFQpAKkNV2TCbjN0sb9ACmRKWJC5byi5NkxVsqKVIrtLSnFc7qCPn-_fN6dlmQoBBe_wG57nCMmfKrj2lX8acGtC3IzxdjBP3wvR-QFHFSIUXH_DMD0vp6ex4M6fwV_OsETMv17Oj5A3x8vgYkLoDDgqnCZMM3_MI57rYW31ZipgR__zcarevsopBLZ47YqXbjphGWasV7tygblFID-odeWUCeSmsRAbYdaQZ7u7D4ieEsJnyJzHcOOM9B_AZwlohqxv_OVWPs-KUPIppmtM79rmuOXl8eOx_HLYU07uYxfRufQa07JD_yfB23vx0uk_FP2tUR6Z9SypLekqL2UG-Ym8rE3-cuZf2r34x34A0&param2=browser_homepage&param3=dis_dn&p=python+claculate+julian+"><input name="ss" type="hidden" value=""><input name="siteurl" type="hidden" value="forums.devshed.com/python-programming-11/julian-date-in-python-410345.html"><input name="ref" type="hidden" value="us.yhs4.search.yahoo.com/yhs/search?hspart=avg&hsimp=yhs-fh_lsonsw&type=dis_dn&param1=rVLbitswEP0a681Gd0sPfkjiBAptWbYpfVxGFztbYq8rO6H79x2Zpt0WCktZMJoZ6WhG5xz7x9AUtbOslXujebnXrSzlRu_KTSvrUhrF7daa_cHuijqQ0DBRGymYoopSSsLchJEyRs4w9k0cyYD9XBBWWqsU10xy6kFE4Mx1UWmwktnSGekC-M5Kbl3dec3rqGNtnHe1NFQpAKkNV2TCbjN0sb9ACmRKWJC5byi5NkxVsqKVIrtLSnFc7qCPn-_fN6dlmQoBBe_wG57nCMmfKrj2lX8acGtC3IzxdjBP3wvR-QFHFSIUXH_DMD0vp6ex4M6fwV_OsETMv17Oj5A3x8vgYkLoDDgqnCZMM3_MI57rYW31ZipgR__zcarevsopBLZ47YqXbjphGWasV7tygblFID-odeWUCeSmsRAbYdaQZ7u7D4ieEsJnyJzHcOOM9B_AZwlohqxv_OVWPs-KUPIppmtM79rmuOXl8eOx_HLYU07uYxfRufQa07JD_yfB23vx0uk_FP2tUR6Z9SypLekqL2UG-Ym8rE3-cuZf2r34x34A0&param2=browser_homepage&param3=dis_dn&p=python+claculate+julian+"><input name="ss" type="hidden" value=""></form></td>
</tr>
</tbody></table>
</div></td></tr></tbody></table>
</td></tr></tbody></table>
</td></tr></tbody></table></div>
<!-- END :: TOP SEARCH BOX -->
<!-- ZONE FOR TOP RIGHT HAND TEXT ON ALL PAGES -->
<!-- END ZONE FOR TOP RIGHT HAND TEXT ON ALL PAGES -->
<table align="center" width="98%" border="0" cellspacing="0" cellpadding="0">
<tbody><tr valign="top">
<td width="158" style="background-color:#CBCB9F;">
<div align="left">
<table width="136" border="0" cellspacing="0" cellpadding="3">
<!-- Beginning of login -->
<form action="http://forums.devshed.com/login.php" method="post" onsubmit="md5hash(vb_login_password,vb_login_md5password)"></form>
<script type="text/javascript" src="./Julian Date in Python - Dev Shed_files/vbulletin_md5.js"></script>
<tbody><tr>
<td height="15" class="form"><font color="#000000"><b>User Name:</b></font></td>
</tr>
<tr>
<td><input type="text" class="form" name="vb_login_username" id="navbar_username" size="12" accesskey="u" tabindex="1" value="User Name" onfocus="if (this.value == 'User Name') this.value = '';"></td>
</tr>
<tr>
<td class="form"><font color="#000000"><b>Password:</b></font></td>
</tr>
<tr>
<td><input type="password" class="form" name="vb_login_password" size="12" accesskey="p" tabindex="2">
<input type="submit" class="form" value="Log in" tabindex="4" title="Enter your username and password in the boxes provided to login, or click the 'register' button to create a profile for yourself." accesskey="s"></td>
</tr>
<tr>
<td><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked"></label>
<span class="form"><font color="#000000"><b>Remember me</b></font></span></td>
</tr>
<input type="hidden" name="s" value="">
<input type="hidden" name="do" value="login">
<input type="hidden" name="forceredirect" value="1">
<input type="hidden" name="vb_login_md5password">
<!-- End of Login -->
</tbody></table>
</div>
</td>
<td align="center" height="100" style="background-color:#CBCB9F;">
<!-- ZONE FOR TOP BANNER AD -->
<table width="100%" cellpadding="4" cellspacing="0">
<tbody><tr valign="middle"><td align="center" valign="middle"></td> </tr>
<!-- END ZONE FOR TOP BANNER AD -->
</tbody></table>
</td>
</tr>
</tbody></table>
<!-- end of header template -->
<!-- content table -->
<table bgcolor="" width="100%" cellpadding="0" cellspacing="0" border="0">
<tbody><tr>
<td width="100%">
<!-- Add Breadcrumb title -->
<table cellspacing="0" cellpadding="0" width="98%" align="center"><tbody><tr><td>
<table width="100%" cellpadding="6" cellspacing="1" class="tborder" border="0">
<tbody><tr>
<td class="alt1" width="100%">
<table cellpadding="0" width="100%" cellspacing="0" border="0" align="left"><tbody><tr><td colspan="3"><br><b>New Free Tools on Dev Shed!</b><br>
We're Excited to announce that Dev Shed now has 70 free tools on the site. To learn more, click <a style="font-weight:bold;color:blue;" target="_blank" href="http://forums.devshed.com/forum-announcements-120/new-free-tools-on-devshed-948222.html">here</a>!<br><br></td></tr>
<tr valign="bottom"><td>
<a rel="nofollow" href="http://forums.devshed.com/#" onclick="history.back(1)"><img src="./Julian Date in Python - Dev Shed_files/navbits_start.gif" width="15" height="15" alt="Go Back" border="0" title="Go Back"></a></td>
<td> </td>
<td width="100%"><span class="navbar"><a rel="nofollow" href="http://forums.devshed.com/" accesskey="1">Dev Shed Forums</a>
> <a class="normalfont" href="http://forums.devshed.com/programming-languages-41/">Programming Languages</a>
> <a class="normalfont" href="http://forums.devshed.com/python-programming-11/">Python Programming</a>
</span></td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><a rel="nofollow" href="./Julian Date in Python - Dev Shed_files/Julian Date in Python - Dev Shed.htm"><img class="inlineimg" src="./Julian Date in Python - Dev Shed_files/navbits_finallink.gif" alt="Reload this Page" width="30" height="15" border="0" title="Reload this Page"></a> <h1 class="showthreadh1">
Julian Date in Python
</h1>
<div id="intelliTxt" class="navbar2"><!--INFOLINKS_ON-->Discuss <b>Julian Date in Python</b> in the Python Programming forum on Dev Shed. <br><i>Julian Date in Python</i> Python Programming forum discussing coding techniques, tips and tricks, and Zope related information. Python was designed from the ground up to be a completely object-oriented programming language.<!--INFOLINKS_OFF--></div>
<!-- end of check -->
</td>
</tr>
</tbody></table>
</td></tr></tbody></table>
<style type="text/css">
<!--
.style1 {
color: #FF0000;
font-weight: bold;
}
td div#showcase {
background:#e5e5e5;height:24px;text-align:center;font-weight:bold;margin:5px;padding-top:3px;
}
td div#showcase a,td div#showcase a:hover {
color:000;
}
td div#showcasebody a {
text-align:center;
display:block;
}
td div#showcasebody a:hover {
color:000;
}
td div#showcasebody p{
height:115px;
overflow:hidden;
padding:5px;
}
td div#showcasebody p img{
float:left;
display:block;
padding:5px;
}
td div#showcasebody a.regular {
display:inline !important;
}
td div#showcasebody a.first {
display:inline !important;
margin-left:50px;
}
#close-showcase {
background: #fff url(http://forums.devshed.com/images/accordion-open.png) no-repeat right top;
background-position:top right;
font-family:"Times New Roman","Times";
font-weight:bold;
font-size:14px;
margin:10px 10px;
display: block;
float: right;
width: 20px;
height: 20px;
}
#showcasebody1 a{
text-align:left;
display:inline;
}
-->
</style>
<style type="text/css">
<!--
.style1 {font-weight: bold}
-->
</style>
<!--Take from here BEGINNING OF FTS-->
<!--Take To here END OF FTS-->
<a name="poststop" id="poststop"></a>
<!-- controls above postbits -->
<br><table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom:3px">
<tbody><tr valign="bottom">
<td width="120" class="smallfont"><a rel="nofollow" href="http://forums.devshed.com/newreply.php?do=newreply&noquote=1&p=1691931"><img src="./Julian Date in Python - Dev Shed_files/reply.gif" alt="Reply" border="0" title="Reply"></a></td>
<td>
</td>
<td><center>
</center></td>
<td width="20%" align="center">
<!-- Add2 - Start -->
<script language="JavaScript" type="text/javascript">
<!--
var addtoMethod=1;
var AddURL = document.location.href;
var AddTitle = escape(document.title);
-->
</script>
<script language="JavaScript" src="./Julian Date in Python - Dev Shed_files/add2.js" type="text/javascript"></script>
<style type="text/css">
<!--
.add2small {
font-size: 11px;
cursor:pointer;
}
.add2head {
font-size: 11px;
font-weight: bold;
}
-->
</style>
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="660" align="center">
<tbody><tr>
<td align="left" class="thead" id="currentPost"><div class="normal">Add This Thread To: </div></td>
<td align="left" class="alt1" id="currentPost">
<span class="add2small" title="Add this page to Delicious" onclick="addto(2)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Delicious.gif" width="16" height="16" border="0">
<u>Del.icio.us</u></span>
<span class="add2small" title="Add this page to Digg" onclick="addto(3)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Digg.gif" width="16" height="16" border="0">
<u>Digg</u></span>
<span class="add2small" title="Add this page to Google" onclick="addto(5)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Google.gif" width="16" height="16" border="0">
<u>Google</u></span>
<span class="add2small" title="Add this page to Spurl" onclick="addto(8)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Spurl.gif" width="16" height="16" border="0">
<u>Spurl</u></span>
<span class="add2small" title="Add this page to Blink" onclick="addto(1)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Blink.gif" width="16" height="16" border="0">
<u>Blink</u></span>
<span class="add2small" title="Add this page to Furl" onclick="addto(4)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Furl.gif" width="16" height="16" border="0">
<u>Furl</u></span>
<span class="add2small" title="Add this page to Simpy" onclick="addto(6)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Simpy.gif" width="16" height="16" border="0">
<u>Simpy</u></span>
<span class="add2small" title="Add this page to Yahoo! MyWeb" onclick="addto(7)"><img align="absmiddle" src="./Julian Date in Python - Dev Shed_files/AddTo_Yahoo.gif" width="16" height="16" border="0">
<u>Y! MyWeb</u></span>
</td>
</tr>
</tbody></table>
<!-- Add2 - End -->
</td>
</tr>
</tbody></table>
<!-- / controls above postbits -->
<!-- toolbar -->
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center" style="border-bottom-width:0px">
<tbody><tr>
<td class="tcat" width="100%">
<div class="smallfont">
<strong>«</strong>
<a rel="nofollow" href="http://forums.devshed.com/python-programming-11/julian-date-in-python-410345.html?goto=nextoldest">Previous Thread</a>
|
<a rel="nofollow" href="http://forums.devshed.com/python-programming-11/julian-date-in-python-410345.html?goto=nextnewest">Next Thread</a>
<strong>»</strong>
<!-- [START HACK='AJAX Feature / Unfeature Thread' VERSION='1.0.0' CHANGEID= 1 ] -->
<!-- [END HACK='AJAX Feature / Unfeature Thread' VERSION='1.0.0' CHANGEID= 1 ] -->
</div>
</td>
<td class="vbmenu_control" id="threadtools">
<a rel="nofollow" href="http://forums.devshed.com/python-programming-11/julian-date-in-python-410345.html#threadtools">Thread Tools</a>
</td>
<td class="vbmenu_control" id="threadsearch">
<a rel="nofollow" href="http://forums.devshed.com/python-programming-11/julian-date-in-python-410345.html#threadsearch">Search this Thread</a>
</td>
<td class="vbmenu_control" id="threadrating">
<a rel="nofollow" href="http://forums.devshed.com/python-programming-11/julian-date-in-python-410345.html#threadrating">Rate Thread</a>
</td>
<td class="vbmenu_control" id="displaymodes">
<a rel="nofollow" href="http://forums.devshed.com/python-programming-11/julian-date-in-python-410345.html#displaymodes">Display Modes</a>
</td>
</tr>
</tbody></table>
<!-- / toolbar -->
<!-- end content table -->
<!-- / end content table -->
<div id="posts">
<!-- *** -->
<div align="center">
<div class="page" style="width:100%; text-align:left">
<div style="padding:0px 25px 0px 25px">