RSSAmplifier

Thought Splinters · Jan 1, 2021

Python basics

0
Sign in to vote or save

This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.

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

Read on notes.peter-baumgartner.net

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.