代码搜索结果
找到约 10,000 项符合
Python 的代码
libxml2.spec
Summary: Library providing XML and HTML support
Name: libxml2
Version: 2.6.29
Release: 1
License: MIT
Group: Development/Libraries
Source: ftp://xmlsoft.org/libxml2-%{version}.tar.gz
BuildRoot: %{_tmp
readme.txt
Python binding for fann compiled for Windows with Visual Studio C++ 2005 Professional.
To use the precompiled binding copy the contents of the python/pyfannWin32/precompiled subdirectory
to a pyfa
__init__.py
#
# Fast Artificial Neural Network library for Python
#
import libfann
__all__ = [
'libfann'
]
__init__.py
#
# Fast Artificial Neural Network library for Python
#
import libfann
__all__ = [
'libfann'
]
function1.py
#!/usr/bin/env python
# Filename: function1.py
def sayHello():
print 'Hello World!' # block belonging to the function
sayHello() # call the function
expression.py
#!/usr/bin/env python
# Filename: expression.py
length=5
breadth=2
area=length*breadth
print 'Area is',area
print 'Perimeter is',2*(length+breadth)
mymodule.py
#!/usr/bin/env python
# Filename: mymodule.py
def sayhi():
print 'Hi, this is mymodule speaking.'
version='0.1'
# End of mymodule.py
function1.py
#!/usr/bin/env python
# Filename: function1.py
def sayHello():
print 'Hello World!' # block belonging to the function
sayHello() # call the function