课程概述
内容提要
- 课程目标
- 课程内容
- 教学方法与学习资源
- 开发环境与工具
- 课程要求和考核
3 小时
开始学习
新网页打开Quiz
What is the difference between lists and tuples?
Lists
- Lists are mutable - they can be changed
- Slower than tuples
- Syntax:
a_list = [1, 2.0, 'Hello world']
Tuples
- Tuples are immutable - they can’t be changed
- Tuples are faster than lists
- Syntax:
a_tuple = (1, 2.0, 'Hello world')
Is Python case-sensitive?
Yes