资源简介
代码片段和文件信息
#!/usr/bin/env python3
# Copyright 2014 Brett Slatkin Pearson Education Inc.
#
# Licensed under the Apache License Version 2.0 (the “License“);
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing software
# distributed under the License is distributed on an “AS IS“ BASIS
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Preamble to mimick book environment
import logging
from pprint import pprint
from sys import stdout as STDOUT
# Example 12
from mypackage import *
a = Projectile(1.5 3)
b = Projectile(4 1.7)
after_a after_b = simulate_collision(a b)
print(after_a.__dict__ after_b.__dict__)
import mypackage
try:
mypackage._dot_product
assert False
except AttributeError:
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1074 2015-12-06 09:28 item_50\api_package\api_consumer.py
文件 780 2015-12-06 09:28 item_50\api_package\main.py
文件 902 2015-12-06 09:28 item_50\api_package\mypackage\models.py
文件 1006 2015-12-06 09:28 item_50\api_package\mypackage\utils.py
文件 862 2015-12-06 09:28 item_50\api_package\mypackage\__init__.py
文件 853 2015-12-06 09:28 item_50\namespace_package\analysis\utils.py
文件 753 2015-12-06 09:28 item_50\namespace_package\analysis\__init__.py
文件 826 2015-12-06 09:28 item_50\namespace_package\frontend\utils.py
文件 753 2015-12-06 09:28 item_50\namespace_package\frontend\__init__.py
文件 895 2015-12-06 09:28 item_50\namespace_package\main.py
文件 896 2015-12-06 09:28 item_50\namespace_package\main2.py
文件 960 2015-12-06 09:28 item_50\namespace_package\main3.py
目录 0 2018-04-25 23:23 item_50\api_package\mypackage
目录 0 2018-04-25 23:23 item_50\namespace_package\analysis
目录 0 2018-04-25 23:23 item_50\namespace_package\frontend
目录 0 2018-04-25 23:23 item_50\api_package
目录 0 2018-04-25 23:23 item_50\namespace_package
目录 0 2018-04-25 23:23 item_50
----------- --------- ---------- ----- ----
10560 18
- 上一篇:Python实现画圆的功能
- 下一篇:python 计算猴子吃桃问题
相关资源
- python 计算猴子吃桃问题
- Python实现画圆的功能
- Flippy——“Othello”游戏的一个翻版
- FP-Growth算法python实现(完整代码)
- python 获取控制台输入的值
- faster Rcnn(python)demo
- 笨办法学Python(第三版)
- python 删除pdf文件中指定页(页码从
- python遍历文件夹下的所有文件以及文
- python实现PSNR变换
- python上传文件至服务器(支持带cook
- santander-product-recommendation方案1
- python随机生成学生信息并写入文件(
- python基础语法学习
- python输出指定格式的日期
- python Support Vector Machine(SVM)
- python Tkinter的串口调试助手
- 超级好玩的python画图
- python RPC sample
- python贪吃蛇小游戏源码
- Python 打印爱心
- Libvirt_Application_Development_Guide_Using_Py
- python turtle画图(小黄人)
- python比丘特之箭(基于turtle)
- python石头剪刀布小游戏
- python动态 画花朵(turtle)
- python实现:自动更新代码到FTP(仅包
- python画十角花(基于turtle)
- python贪吃蛇(pygame入门级示例源码)
- python强化学习(基于matplotlib)
评论
共有 条评论