面对数字协作及开放创新环境,动手建立需求文档,且使用Git及Github软件及云端资源练习独立及协作,并以实际项目(PBL学习)展示独立及协作过程及成果的记录。
每周1-2小時,共 8 周
学习
测验
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