代码搜索:Python
找到约 10,000 项符合「Python」的源代码
代码结果 10,000
www.eeworm.com/read/196909/8050040
txt pgm14_09.txt
#
# This file contains the Python code from Program 14.9 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R.
www.eeworm.com/read/196909/8050046
txt pgm09_16.txt
#
# This file contains the Python code from Program 9.16 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R.
www.eeworm.com/read/196909/8050047
txt pgm12_21.txt
#
# This file contains the Python code from Program 12.21 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R
www.eeworm.com/read/196909/8050049
txt pgm16_19.txt
#
# This file contains the Python code from Program 16.19 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R
www.eeworm.com/read/196909/8050051
txt pgm06_01.txt
#
# This file contains the Python code from Program 6.1 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R.
www.eeworm.com/read/196909/8050054
txt pgm0a_05.txt
#
# This file contains the Python code from Program A.5 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R.
www.eeworm.com/read/196909/8050058
txt pgm05_03.txt
#
# This file contains the Python code from Program 5.3 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R.
www.eeworm.com/read/196909/8050060
txt pgm06_21.txt
#
# This file contains the Python code from Program 6.21 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R.
www.eeworm.com/read/196909/8050062
txt pgm16_20.txt
#
# This file contains the Python code from Program 16.20 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R
www.eeworm.com/read/319707/13445756
py 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