课程概述

内容提要

  1. 课程目标
  2. 课程内容
  3. 教学方法与学习资源
  4. 开发环境与工具
  5. 课程要求和考核

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