665 views|2 replies

34

Posts

2

Resources
The OP
 

Reading and sharing of "Artificial Intelligence Practical Tutorial from Python Introduction to Machine Learning" [Copy link]

Artificial Intelligence Practical Tutorial

From Python to Machine Learning

The content includes three parts

1. Python Programming

2. Machine Learning

3. Neural Networks

Related resource download links:

https://www.hxedu.com.cn/

链接已隐藏,如需查看请登录或者注册

链接已隐藏,如需查看请登录或者注册

Python download and PyCharm IDE installation

https://www.python.org/downloads/

https://www.jetbrains.com.cn/pycharm/download/

Python installation test

Run Windows PowerShell as an administrator and enter

python

Get the current Python version information, etc.

Install and activate PyCharm, create a new project, create a new .py file, and test the code

print("Hellow world!")

Human-computer interaction

Realize human-computer interaction through functions such as 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)

This post is from Programming Basics

Latest reply

Download and learn   Details Published on 2024-9-20 20:12
Personal signature

MCU 开发者和爱好者

 

413

Posts

0

Resources
2
 

This is good, I will first come down and study it slowly, thanks to the host, keep going!!!

This post is from Programming Basics
 
 
 

1

Posts

0

Resources
3
 

Download and learn

This post is from Programming Basics
 
 
 

Guess Your Favourite
Find a datasheet?

EEWorld Datasheet Technical Support

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号
快速回复 返回顶部 Return list