Basics of AI Python Coding
Basics of AI Python Coding
Navigating the learning platform
jupyter L2_student通过shift+enter运行代码
Running your first program
#+空格表示注释
Data in Python
print()
图像和声音都是以文本或数字形式处理的
“字符串”
“””
多行字符串
“””
type()
int 整数 float 浮点数
a ** b a的b次方
Combining text and calculations
f-strings 格式化字符串
print(f”{:.0f}”)
f-strings 也可以作为被赋的值
Variables
变量名不能包含空格
Python 变量命名规则总结:
- 变量名只能包含字母、数字和下划线(_)。
- 变量名必须以字母或下划线开头。
- 变量名区分大小写(例如,age 和 Age 是不同的变量)。
Functions: Actions on Data
向函数提供参数
len() 计算字符串长度或列表中元素个数(长度)
round(number) 四舍五入数
Basics of AI Python Coding
https://blakehansen130.github.io/2024/10/23/AI Python for Beginners:Basics of AI Python Coding/