Search

Pinaki Bhattacharyya
Pinaki Bhattacharyya
  • Demo
  • Posts
  • Projects
  • Talks
  • Publications
  • Courses
  • Contact
  • Light Dark Automatic
  • Courses
Data Science
  • Python basics
  • Visualization
  • Statistics
  • Contents
  • Learn
  • Quiz
  1. Home
  2. Courses
  3. Data Science
  4. Python basics

Python basics

Build a foundation in Python.

1-2 hours per week, for 8 weeks

Learn

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
Next
Visualization

Last updated on May 22, 2021

Copyright © 2021 Me

Published with Wowchemy — the free, open source website builder that empowers creators.

Cite
Copy Download