make code less lines

B

Brettjg

I wonder if i can reduce these three lines to one. I know I can't use a comma
or a semi-colon. I have many repititions of these three lines and it would be
nice to save some space. Regards, Brett

O_fore = 56
O_back = 60
O_grad = 3
 
J

JBeaucaire

Use a chart format:
--A----B----C----D--
1 ----fore--back--grad
2 O---56---60----3
3 P---44---55----4
4

etc...
 
J

Jim Cone

O_fore = 56: O_back = 60: O_grad = 3
--
Jim Cone
Portland, Oregon USA



"Brettjg" <[email protected]>
wrote in message
I wonder if i can reduce these three lines to one. I know I can't use a comma
or a semi-colon. I have many repititions of these three lines and it would be
nice to save some space. Regards, Brett

O_fore = 56
O_back = 60
O_grad = 3
 
Top