注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
lijinlei的个人空间 https://home.eeworld.com.cn/space-uid-1452736.html [收藏] [复制] [分享] [RSS]
日志

《人工智能实践教程 从Python入门到机器学习》阅读分享

已有 558 次阅读2024-7-28 12:28 |个人分类:Book

人工智能实践教程

从Python入门到机器学习

内容包括三部分

1.Python编程

2.机器学习

3.神经网络

关联资源下载链接:

javascript:;

javascript:;

javascript:;

Python 下载和 PyCharm IDE 安装

javascript:;

javascript:;

Python安装测试

管理员身份运行 Windows PowerShell,输入

python

获得回复当前Python版本信息等。

PyCharm 安装并激活,新建工程,新建 .py 文件,测试代码

print("Hellow world!")

人机交互

通过 input 等函数实现人机交互

# input apple price
price_str = input("The price of each unit apple is ")
# weight of apple
weight_str = input("Give the weight of apple please ")
# calculate total price
# transform to float
price = float(price_str)
# transform weight to float
weight = float(weight_str)
# calculate price
money = price * weight
print(money)

 

本文来自论坛,点击查看完整帖子内容。

评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章