Re: [Tutor] kernel serie

2005-05-19 Thread Max Noel
On May 19, 2005, at 23:28, Jonas Melian wrote: > I want get the kernel serie, so 2.x only (2.6 or 2.4) > > info_kernel = platform.release() # get the kernel version > info_kernel = '.'.join(info_kernel.split('.',2)[:2]) > > is there any way of get it in one line only? Based on your code, th

[Tutor] kernel serie

2005-05-19 Thread Jonas Melian
I want get the kernel serie, so 2.x only (2.6 or 2.4) info_kernel = platform.release() # get the kernel version info_kernel = '.'.join(info_kernel.split('.',2)[:2]) is there any way of get it in one line only? Thanks in advance! ___ Tutor maillist -