代码搜索结果
找到约 11,834 项符合
Python 的代码
setupmingw32.py
#! /usr/bin/python
# $Id: setupmingw32.py,v 1.1 2007/06/12 23:04:13 nanard Exp $
# the MiniUPnP Project (c) 2007 Thomas Bernard
# http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
#
# python
setup.py
#! /usr/bin/python
# $Id: setup.py,v 1.2 2007/09/24 21:29:32 nanard Exp $
# the MiniUPnP Project (c) 2007 Thomas Bernard
# http://miniupnp.tuxfamily.org/ or http://miniupnp.free.fr/
#
# python script
print_tuple.py
# Filename: print_tuple.py
age = 22
name = 'Swaroop'
print '%s is %d years old' % (name,age)
print 'Why is %s playing with that python?' % name
poem.txt
Programming is fun
When the work is done
if you wanna make your work also fun:
use Python!end add
helloworld.py
# my first python program
print 'Hello World'
help
using_file.py
# -*- coding: cp936 -*-
# Filename: using_file.py
poem = '''\
Programming is fun
When the work is done
if you wanna make your work also fun:
use Python!
'''
f = file('poem.txt', 'w
cpp_make.log
ABAQUS JOB cpp_make
Begin Compiling User Post-Processing Program
5/13/2006 3:53:14 PM
Compiling: J:\abaqus\verify\cpp_make.C
Traceback (most recent call last):
File "Python/driver/make.py", lin
assign1.html
Assignment #1: Warm up in Python
(due May. 5, 2008)
Introduction
As a warm-up for the programming ass
installpython 25inlinux.txt
在DreamHost上安装<mark>python</mark> 2.5on 2006.11.24 归类于 建站日志 2,622字
标签:DreamHost, <mark>python</mark>.
今天开始看书学<mark>python</mark>。虽然2005年10月就开始关注<mark>python</mark>了,还订阅了<mark>python</mark>邮件列表,但是一直没开始学。DreamHost自带<mark>python</mark>,输入<mark>python</mark>命令默认启动的是<mark>python</mark> 2.3.5。另外还有<mark>python</mark> ...
pythoncexceptiontraceback.txt
C代码中如何得到<mark>python</mark>脚本异常时的traceback信息
在软件项目的开发过程中,我们总是试图让程序能够适应更多的应用环境以及业务流程,不管你对于需求的了解如何准确,也不管你做了有多么充分的估计,但有很多情况仍然让你无法应付,比如:需求是会变化的;维护项目的人不一定都能用C/C++写出没有内存问题的代码等等。
让软件系统能够适应更多变化的方法有很多种,高度的抽象、动 ...