Python论坛  - 讨论区

标题:[python-chinese] two questions

2005年07月04日 星期一 10:42

Qutr qutianrang at gmail.com
Mon Jul 4 10:42:04 HKT 2005

shisa,你好

邮件列表里有个大虾会FreeBSD,你不如请教一下装一个玩玩。
linux建议去买个正版的不是很贵!


Qutr , qutianrang at gmail.com 
2005-7-4 
----- 收到以下来信内容 ----- 
发件人: shisa 
收件人: shhgs,python-chinese 
时  间: 2005-07-04, 10:31:03
主  题: Re: [python-chinese] two questions


到哪儿去下LINUX?怎么安装啊?不好意思问得浅。

On 7/3/05, shhgs <shhgs.efhilt at gmail.com> wrote:
> Linux下的好。Python主要是为Posix设计的,很多类库,特别是基本的文件操作,都是按照Posix平台设计的。有不少标准类库,windows下面都没有。当然也有一些是windows有而Linux下没有的,不过从数量上讲,前者要多得多。
> 
> On 7/3/05, 倪正刚 <ni at twinisa.com> wrote:
> > 主要看你自己的开发方向了,我在FreeBSD下用Python。
> > 前边的行数不用输入。
> > Python是以缩近来表示程序结构的,所以语句体前的空格个数要求很严格
> >
> > -----Original Message-----
> > From: python-chinese-bounces at lists.python.cn
> > [mailto:python-chinese-bounces at lists.python.cn]On Behalf Of Xinyue Ye
> > Sent: 2005年7月3日 14:58
> > To: python-chinese at lists.python.cn
> > Subject: [python-chinese] two questions
> >
> >
> > 我是PYTHON的初学者,
> > 请问PYTHON在WINDOWS下用和LINUX下用有什么不同?哪个更好?
> > 在一个网页里找了个例子:
> >
> > 1 # calc.py
> > 2 def calc(seq):
> > 3 maximum = 0
> > 4 max_item = []
> > 5 for i in seq:
> > 6 product = (i[0]*100 + i[1]*10 + i[2]) * (i[3]*10 + i[4])
> > 7 if product > maximum:
> > 8 maximum = product
> > 9 max_item = i
> > 10 elif product == maximum:
> > 11 max_item += ','+i
> > 12 return max_item, maximum
> > 13
> > 14 seq = [ [5,6,7,8,9], [5,6,7,9,8] ]
> > 15 max_item, maximum = calc(seq)
> > 16 print "Maximum at", max_item, ",product", maximum
> > 你试了一下,
> > $python calc.py
> > Maximum at [5, 6, 7, 9, 8] ,product 90160
> >
> > $python calc.py 是什么意思?我怎么一输入就得到:
> > "SyntaxError: invalid syntax"
> > 还有,我是不是要把从第一行到第16行
> > 贴到Notebook,前面的数字还要吗?
> > 对不起问得浅。
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>
_______________________________________________
python-chinese list
python-chinese at lists.python.cn
http://python.cn/mailman/listinfo/python-chinese
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/9cffd63b/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 10:43

qazplm qazplm qazplm_99 at hotmail.com
Mon Jul 4 10:43:58 HKT 2005


_________________________________________________________________
免费下载 MSN Explorer:   http://explorer.msn.com/lccn/  


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 10:59

Zoom Quiet zoom.quiet at gmail.com
Mon Jul 4 10:59:22 HKT 2005

大哥,先自个儿看一下子手册可以??

别不论什么都往列表丢哪…………

在 05-7-4,qazplm qazplm<qazplm_99 at hotmail.com> 写道:
> 
> 
> _________________________________________________________________
> 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 


-- 
[Time is unimportant, only life important!]

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 11:08

honeyday honeyday.mj at gmail.com
Mon Jul 4 11:08:24 HKT 2005

一个字符串就是一个chr[]数组。
用下标引用就可以了。
python里面应该叫列表。所以,使用列表的所有方法就可以对一个字符串对象来操作了。
下面是diveintopython里面的例子:
例 1.15. 分割一个列表

>>> li
['a', 'b', 'mpilgrim', 'z', 'example']
>>> li[1:3]  
['b', 'mpilgrim']
>>> li[1:-1] 
['b', 'mpilgrim', 'z']
>>> li[0:3]  
['a', 'b', 'mpilgrim']

例 1.16. 分片缩写

>>> li
['a', 'b', 'mpilgrim', 'z', 'example']
>>> li[:3] 
['a', 'b', 'mpilgrim']
>>> li[3:] 
['z', 'example']
>>> li[:]  
['a', 'b', 'mpilgrim', 'z', 'example']


在 05-7-4,qazplm qazplm<qazplm_99 at hotmail.com> 写道:
> 
> 
> _________________________________________________________________
> 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 11:10

honeyday honeyday.mj at gmail.com
Mon Jul 4 11:10:08 HKT 2005

是啊。
建议先去看看《深入python》这本书,实在搞不清楚的再来问。

在 05-7-4,Zoom Quiet<zoom.quiet at gmail.com> 写道:
> 大哥,先自个儿看一下子手册可以??
> 
> 别不论什么都往列表丢哪…………
> 
> 在 05-7-4,qazplm qazplm<qazplm_99 at hotmail.com> 写道:
> >
> >
> > _________________________________________________________________
> > 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> 
> --
> [Time is unimportant, only life important!]
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 11:18

cpunion cpunion at 263.net
Mon Jul 4 11:18:13 HKT 2005

 >>> a = 'Hello World!'
 >>> a[6:]
'World!'
 >>> a[2:5]
'llo'
 >>> a[-5:]
'orld!'
 >>> a[:-5]
'Hello W'
 >>> a[3:-1]
'lo World'
 >>> a[:5]
'Hello'


qazplm qazplm wrote:

>
>
> _________________________________________________________________
> 免费下载 MSN Explorer:   http://explorer.msn.com/lccn/ 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
>
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 11:19

March Liu march.liu at gmail.com
Mon Jul 4 11:19:30 HKT 2005

字符串常用的基本操作在《Python Tutorial》里就有,建议新手都读一读。毕竟这是Python的正式文档。在
http://python.cn上可以下载中文版。

在05-7-4,honeyday <honeyday.mj at gmail.com> 写道:
> 
> 是啊。
> 建议先去看看《深入python》这本书,实在搞不清楚的再来问。
> 
> 在 05-7-4,Zoom Quiet<zoom.quiet at gmail.com> 写道:
> > 大哥,先自个儿看一下子手册可以??
> >
> > 别不论什么都往列表丢哪…………
> >
> > 在 05-7-4,qazplm qazplm<qazplm_99 at hotmail.com> 写道:
> > >
> > >
> > > _________________________________________________________________
> > > 免费下载 MSN Explorer: http://explorer.msn.com/lccn/
> > >
> > > _______________________________________________
> > > python-chinese list
> > > python-chinese at lists.python.cn
> > > http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> > --
> > [Time is unimportant, only life important!]
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
> 


-- 
欢迎访问:
http://blog.csdn.net/ccat

刘鑫
March.Liu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/cf1a28a2/attachment.htm

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 11:39

Bruce Who whoonline at msn.com
Mon Jul 4 11:39:15 HKT 2005

======= 2005-07-04 10:58:27 Zoom Quiet wrote: =======

>使用Python 就别想玩商业的那一套,果真要玩的话,
>也别在这讨论吧……………………
>
>其实可以支持你一招,
>用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc
>解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀………………

    加密的思路是可行的,但解压的话就还是会被别人得到。比如别人运行你的程序,再用进程管理工具把你的程序kill掉,此时你解压的pyc还来不及删除,肯定在某个临时目录下,还是可以得到的。得到了pyc再用decompiler就可以得到源代码了。

    当然你可以自己研究python的字节码,然后自己写一个不能反编译的版本出来,不过这个就很有难度了。

    所以还是听zoom的建议吧。。。
>
>你这么累,干脆使用 C# 算了…………
>
>在 05-7-4,nEO<gentoo.cn at gmail.com> 写道:
>> 使用compile隐藏代码没什么意义
>>  基本上和代码一样
>>  
>>  如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用
>>  目前对于Python来说,没什么有效方法控制python程序不被人看懂
>>  
>> 
>> 在05-7-4,limodou <limodou at gmail.com> 写道:
>> > 使用compile模块。
>> > 
>> > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道:
>> > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件
>> > > 编译了再发放。
>> > > .pyc与.pyo表示什么意思,有什么不同。
>> > >
>> > > 谢谢!
>> > >
>> > > _______________________________________________
>> > > python-chinese list
>> > > python-chinese at lists.python.cn
>> > > http://python.cn/mailman/listinfo/python-chinese
>> > >
>> > 
>> > --
>> > I like python!
>> > My Donews Blog: http://www.donews.net/limodou
>> > New Google Maillist:
>> http://groups-beta.google.com/group/python-cn
>> > 
>> > _______________________________________________
>> > python-chinese list
>> > python-chinese at lists.python.cn
>> > http://python.cn/mailman/listinfo/python-chinese
>> > 
>> > 
>> > 
>> 
>> 
>> 
>> -- 
>> I'm the one, powered by nEO 
>> _______________________________________________
>> python-chinese list
>> python-chinese at lists.python.cn
>> http://python.cn/mailman/listinfo/python-chinese
>> 
>> 
>> 
>
>
>-- 
>[Time is unimportant, only life important!]
>_______________________________________________
>python-chinese list
>python-chinese at lists.python.cn
>http://python.cn/mailman/listinfo/python-chinese
>

= = = = = = = = = = = = = = = = = = = =
			
Best regards,

        Bruce Who
          2005-07-04


[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 11:51

Qiangning Hong hongqn at gmail.com
Mon Jul 4 11:51:12 HKT 2005

从internet上download下来的linux一样是正版的。

Qutr wrote:
> shisa,你好
>  
> 邮件列表里有个大虾会FreeBSD,你不如请教一下装一个玩玩。
> linux建议去买个正版的不是很贵!
>  
>  
> Qutr, qutianrang at gmail.com qutianrang at gmail.com>
> 2005-7-4
> 
>     ----- 收到以下来信内容 -----
>     *发件人:* shisa samrobertsmith at gmail.com>
>     *收件人:* shhgs,python-chinese
>     shhgs.efhilt at gmail.com,python-chinese at lists.python.cn>
>     *时  间:* 2005-07-04, 10:31:03
>     *主  题:* Re: [python-chinese] two questions
> 
>     到哪儿去下LINUX?怎么安装啊?不好意思问得浅。
> 
>     On 7/3/05, shhgs <shhgs.efhilt at gmail.com >     shhgs.efhilt at gmail.com>> wrote:
>     > Linux下的好。Python主要是为Posix设计的,很多类库,特别是基本的文件
>     操作,都是按照Posix平台设计的。有不少标准类库,windows下面都没有。当
>     然也有一些是windows有而Linux下没有的,不过从数量上讲,前者要多得多。
>     >
>     > On 7/3/05, 倪正刚 <ni at twinisa.com ni at twinisa.com>> wrote:
>     > > 主要看你自己的开发方向了,我在FreeBSD下用Python。
>     > > 前边的行数不用输入。
>     > > Python是以缩近来表示程序结构的,所以语句体前的空格个数要求很严格
>     > >
>     > > -----Original Message-----
>     > > From: python-chinese-bounces at lists.python.cn >     python-chinese-bounces at lists.python.cn>
>     > > [mailto:python-chinese-bounces at lists.python.cn >     python-chinese-bounces at lists.python.cn>]On Behalf Of Xinyue Ye
>     > > Sent: 2005年7月3日 14:58
>     > > To: python-chinese at lists.python.cn >     python-chinese at lists.python.cn>
>     > > Subject: [python-chinese] two questions
>     > >
>     > >
>     > > 我是PYTHON的初学者,
>     > > 请问PYTHON在WINDOWS下用和LINUX下用有什么不同?哪个更好?
>     > > 在一个网页里找了个例子:
>     > >
>     > > 1 # calc.py
>     > > 2 def calc(seq):
>     > > 3 maximum = 0
>     > > 4 max_item = []
>     > > 5 for i in seq:
>     > > 6 product = (i[0]*100 + i[1]*10 + i[2]) * (i[3]*10 + i[4])
>     > > 7 if product > maximum:
>     > > 8 maximum = product
>     > > 9 max_item = i
>     > > 10 elif product == maximum:
>     > > 11 max_item += ','+i
>     > > 12 return max_item, maximum
>     > > 13
>     > > 14 seq = [ [5,6,7,8,9], [5,6,7,9,8] ]
>     > > 15 max_item, maximum = calc(seq)
>     > > 16 print "Maximum at", max_item, ",product", maximum
>     > > 你试了一下,
>     > > $python calc.py
>     > > Maximum at [5, 6, 7, 9, 8] ,product 90160
>     > >
>     > > $python calc.py 是什么意思?我怎么一输入就得到:
>     > > "SyntaxError: invalid syntax"
>     > > 还有,我是不是要把从第一行到第16行
>     > > 贴到Notebook,前面的数字还要吗?
>     > > 对不起问得浅。
>     > >
>     > > _______________________________________________
>     > > python-chinese list
>     > > python-chinese at lists.python.cn >     python-chinese at lists.python.cn>
>     > > http://python.cn/mailman/listinfo/python-chinese
>     > >
>     >
>     > _______________________________________________
>     > python-chinese list
>     > python-chinese at lists.python.cn >     python-chinese at lists.python.cn>
>     > http://python.cn/mailman/listinfo/python-chinese
>     >
>     >
>     >
>     _______________________________________________
>     python-chinese list
>     python-chinese at lists.python.cn python-chinese at lists.python.cn>
>     http://python.cn/mailman/listinfo/python-chinese
> 
> 
> ------------------------------------------------------------------------
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese


-- 
Qiangning

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 13:24

Jiang Hua jianghua1213 at hotmail.com
Mon Jul 4 13:24:56 HKT 2005

如何去查看Python的release文档。
比例:
文件大小的限制、List列表的限制,等等其他一些限制!

谢谢!



[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 15:32

Wang Kebo mep_ at 163.com
Mon Jul 4 15:32:49 HKT 2005

根据GPL,Linux时可以随意分发的,何来盗版之说?
这个说法多见于国内贩卖Linux拷贝的所谓“正版”厂商。
 
__
Best Regards,
 
Kebo Wang



  _____  

From: python-chinese-bounces at lists.python.cn
[mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Qutr
Sent: Monday, July 04, 2005 10:42 AM
To: samrobertsmith; python-chinese
Subject: Re: Re: [python-chinese] two questions


shisa,你好
 
邮件列表里有个大虾会FreeBSD,你不如请教一下装一个玩玩。
linux建议去买个正版的不是很贵!  
 
 
Qutr,  qutianrang at gmail.com> qutianrang at gmail.com
2005-7-4 

----- 收到以下来信内容 ----- 
发件人: shisa samrobertsmith at gmail.com>  
收件人: shhgs,python-chinese
shhgs.efhilt at gmail.com,python-chinese at lists.python.cn>  
时  间: 2005-07-04, 10:31:03
主  题: Re: [python-chinese] two questions

到哪儿去下LINUX?怎么安装啊?不好意思问得浅。

On 7/3/05, shhgs <shhgs.efhilt at gmail.com shhgs.efhilt at gmail.com> >
wrote:
> Linux下的好。Python主要是为Posix设计的,很多类库,特别是基本的文件操作,都
是按照Posix平台设计的。有不少标准类库,windows下面都没有。当然也有一些是
windows有而Linux下没有的,不过从数量上讲,前者要多得多。
> 
> On 7/3/05, 倪正刚 <ni at twinisa.com ni at twinisa.com> > wrote:
> > 主要看你自己的开发方向了,我在FreeBSD下用Python。
> > 前边的行数不用输入。
> > Python是以缩近来表示程序结构的,所以语句体前的空格个数要求很严格
> >
> > -----Original Message-----
> > From: python-chinese-bounces at lists.python.cn python-chinese-bounces at lists.python.cn> 
> > [mailto:python-chinese-bounces at lists.python.cn python-chinese-bounces at lists.python.cn> ]On Behalf Of Xinyue Ye
> > Sent: 2005年7月3日 14:58
> > To: python-chinese at lists.python.cn python-chinese at lists.python.
cn> 
> > Subject: [python-chinese] two questions
> >
> >
> > 我是PYTHON的初学者,
> > 请问PYTHON在WINDOWS下用和LINUX下用有什么不同?哪个更好?
> > 在一个网页里找了个例子:
> >
> > 1 # calc.py
> > 2 def calc(seq):
> > 3 maximum = 0
> > 4 max_item = []
> > 5 for i in seq:
> > 6 product = (i[0]*100 + i[1]*10 + i[2]) * (i[3]*10 + i[4])
> > 7 if product > maximum:
> > 8 maximum = product
> > 9 max_item = i
> > 10 elif product == maximum:
> > 11 max_item += ','+i
> > 12 return max_item, maximum
> > 13
> > 14 seq = [ [5,6,7,8,9], [5,6,7,9,8] ]
> > 15 max_item, maximum = calc(seq)
> > 16 print "Maximum at", max_item, ",product", maximum
> > 你试了一下,
> > $python calc.py
> > Maximum at [5, 6, 7, 9, 8] ,product 90160
> >
> > $python calc.py 是什么意思?我怎么一输入就得到:
> > "SyntaxError: invalid syntax"
> > 还有,我是不是要把从第一行到第16行
> > 贴到Notebook,前面的数字还要吗?
> > 对不起问得浅。
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn python-chinese at lists.python.cn> 
> > http://python.cn/mailman/listinfo/python-chinese
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn python-chinese at lists.python.cn> 
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>
_______________________________________________
python-chinese list
python-chinese at lists.python.cn python-chinese at lists.python.cn> 
http://python.cn/mailman/listinfo/python-chinese



-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/0a56f392/attachment.html

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月04日 星期一 15:56

shhgs shhgs.efhilt at gmail.com
Mon Jul 4 15:56:51 HKT 2005

我觉得应该可以。解压出来之后为什么还要放到文件里?直接让C调用Python的解释器不久行了?东西都放在内存里,进程被kill了,内存自然释放。

不过有必要搞得这么复杂吗?

On 7/3/05, Bruce Who <whoonline at msn.com> wrote:
> ======= 2005-07-04 10:58:27 Zoom Quiet wrote: =======
> 
> >使用Python 就别想玩商业的那一套,果真要玩的话,
> >也别在这讨论吧……………………
> >
> >其实可以支持你一招,
> >用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc
> >解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀………………
> 
>    加密的思路是可行的,但解压的话就还是会被别人得到。比如别人运行你的程序,再用进程管理工具把你的程序kill掉,此时你解压的pyc还来不及删除,肯定在某个临时目录下,还是可以得到的。得到了pyc再用decompiler就可以得到源代码了。
> 
>    当然你可以自己研究python的字节码,然后自己写一个不能反编译的版本出来,不过这个就很有难度了。
> 
>    所以还是听zoom的建议吧。。。
> >
> >你这么累,干脆使用 C# 算了…………
> >
> >在 05-7-4,nEO<gentoo.cn at gmail.com> 写道:
> >> 使用compile隐藏代码没什么意义
> >>  基本上和代码一样
> >>
> >>  如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用
> >>  目前对于Python来说,没什么有效方法控制python程序不被人看懂
> >>
> >>
> >> 在05-7-4,limodou <limodou at gmail.com> 写道:
> >> > 使用compile模块。
> >> >
> >> > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道:
> >> > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件
> >> > > 编译了再发放。
> >> > > .pyc与.pyo表示什么意思,有什么不同。
> >> > >
> >> > > 谢谢!
> >> > >
> >> > > _______________________________________________
> >> > > python-chinese list
> >> > > python-chinese at lists.python.cn
> >> > > http://python.cn/mailman/listinfo/python-chinese
> >> > >
> >> >
> >> > --
> >> > I like python!
> >> > My Donews Blog: http://www.donews.net/limodou
> >> > New Google Maillist:
> >> http://groups-beta.google.com/group/python-cn
> >> >
> >> > _______________________________________________
> >> > python-chinese list
> >> > python-chinese at lists.python.cn
> >> > http://python.cn/mailman/listinfo/python-chinese
> >> >
> >> >
> >> >
> >>
> >>
> >>
> >> --
> >> I'm the one, powered by nEO
> >> _______________________________________________
> >> python-chinese list
> >> python-chinese at lists.python.cn
> >> http://python.cn/mailman/listinfo/python-chinese
> >>
> >>
> >>
> >
> >
> >--
> >[Time is unimportant, only life important!]
> >_______________________________________________
> >python-chinese list
> >python-chinese at lists.python.cn
> >http://python.cn/mailman/listinfo/python-chinese
> >
> 
> = = = = = = = = = = = = = = = = = = = =
> 
> Best regards,
> 
> Bruce Who
> 2005-07-04
> 
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

2005年07月11日 星期一 17:10

. newbie learnpython at gmail.com
Mon Jul 11 17:10:20 HKT 2005

这样也可以直接用编辑器打开内存读取。比如winhex

在 05-7-4,shhgs<shhgs.efhilt at gmail.com> 写道:
> 我觉得应该可以。解压出来之后为什么还要放到文件里?直接让C调用Python的解释器不久行了?东西都放在内存里,进程被kill了,内存自然释放。
> 
> 不过有必要搞得这么复杂吗?
> 
> On 7/3/05, Bruce Who <whoonline at msn.com> wrote:
> > ======= 2005-07-04 10:58:27 Zoom Quiet wrote: =======
> >
> > >使用Python 就别想玩商业的那一套,果真要玩的话,
> > >也别在这讨论吧……………………
> > >
> > >其实可以支持你一招,
> > >用C写一个小小的即时解码器,每次运行前将hash 加密过的 pyc
> > >解压出来,运行完毕后再全部自个儿删除,而且实时监视,是否有非期望的进程来读 pyc 如果有立即自杀………………
> >
> >    加密的思路是可行的,但解压的话就还是会被别人得到。比如别人运行你的程序,再用进程管理工具把你的程序kill掉,此时你解压的pyc还来不及删除,肯定在某个临时目录下,还是可以得到的。得到了pyc再用decompiler就可以得到源代码了。
> >
> >    当然你可以自己研究python的字节码,然后自己写一个不能反编译的版本出来,不过这个就很有难度了。
> >
> >    所以还是听zoom的建议吧。。。
> > >
> > >你这么累,干脆使用 C# 算了…………
> > >
> > >在 05-7-4,nEO<gentoo.cn at gmail.com> 写道:
> > >> 使用compile隐藏代码没什么意义
> > >>  基本上和代码一样
> > >>
> > >>  如果你有特别秘密的东西要发布给别人,建议用c写,然后包装给python用
> > >>  目前对于Python来说,没什么有效方法控制python程序不被人看懂
> > >>
> > >>
> > >> 在05-7-4,limodou <limodou at gmail.com> 写道:
> > >> > 使用compile模块。
> > >> >
> > >> > 在 05-7-4,Jiang Hua<jianghua1213 at hotmail.com> 写道:
> > >> > > 用Python写了一些程序,不想让别人看到源程序,在分发程序时有没有办法把.py文件
> > >> > > 编译了再发放。
> > >> > > .pyc与.pyo表示什么意思,有什么不同。
> > >> > >
> > >> > > 谢谢!
> > >> > >
> > >> > > _______________________________________________
> > >> > > python-chinese list
> > >> > > python-chinese at lists.python.cn
> > >> > > http://python.cn/mailman/listinfo/python-chinese
> > >> > >
> > >> >
> > >> > --
> > >> > I like python!
> > >> > My Donews Blog: http://www.donews.net/limodou
> > >> > New Google Maillist:
> > >> http://groups-beta.google.com/group/python-cn
> > >> >
> > >> > _______________________________________________
> > >> > python-chinese list
> > >> > python-chinese at lists.python.cn
> > >> > http://python.cn/mailman/listinfo/python-chinese
> > >> >
> > >> >
> > >> >
> > >>
> > >>
> > >>
> > >> --
> > >> I'm the one, powered by nEO
> > >> _______________________________________________
> > >> python-chinese list
> > >> python-chinese at lists.python.cn
> > >> http://python.cn/mailman/listinfo/python-chinese
> > >>
> > >>
> > >>
> > >
> > >
> > >--
> > >[Time is unimportant, only life important!]
> > >_______________________________________________
> > >python-chinese list
> > >python-chinese at lists.python.cn
> > >http://python.cn/mailman/listinfo/python-chinese
> > >
> >
> > = = = = = = = = = = = = = = = = = = = =
> >
> > Best regards,
> >
> > Bruce Who
> > 2005-07-04
> >
> >
> > _______________________________________________
> > python-chinese list
> > python-chinese at lists.python.cn
> > http://python.cn/mailman/listinfo/python-chinese
> >
> >
> >
> 
> _______________________________________________
> python-chinese list
> python-chinese at lists.python.cn
> http://python.cn/mailman/listinfo/python-chinese
> 
> 
>

[导入自Mailman归档:http://www.zeuux.org/pipermail/zeuux-python]

如下红色区域有误,请重新填写。

    你的回复:

    请 登录 后回复。还没有在Zeuux哲思注册吗?现在 注册 !

    Zeuux © 2025

    京ICP备05028076号