KwickClips Python
Python: 204 short revision clips
One idea per clip, with the answer written out underneath. Each clip links back to the full Python lesson it came from.
What is 2 ** 3 ** 2?43 sec
How do you get the last digit of a number?40 sec
Which two collections are mutable?45 sec
What does append do with a list argument?39 sec
What is 7 // 2 * 2?44 sec
Why is Python easy for beginners?40 sec
Does IDLE need a separate install?42 sec
Why did my Shell code vanish?39 sec
Which key runs a script in IDLE?43 sec
What does Python do with a comment?41 sec
What is a token?42 sec
How many keywords does Python have?39 sec
Is 2marks valid?44 sec
Is None the same as zero?45 sec
What does a colon do?43 sec
Is a variable a box?43 sec
Do you need a third variable to swap?41 sec
Is "72" a number?44 sec
Is a list mutable?44 sec
What type is 10 / 2?42 sec
What type does input() return?40 sec
What is the default sep?39 sec
Does int() round?44 sec
What is True + 1?43 sec
Can one print show two lines?46 sec
What does % give?44 sec
Why no ZeroDivisionError?42 sec
Does Python have ++?44 sec
What does is check?44 sec
What is 10 + 3 * 2?44 sec
Which error lets nothing run?41 sec
Which traceback line do you read first?40 sec
How do you find a bad line?39 sec
Why no error message?40 sec
Does a program always run top to bottom?42 sec
What does a missing colon give?42 sec
When does the inner if run?42 sec
What does and need?41 sec
What is the pattern?42 sec
What is iteration?43 sec
Is stop included?43 sec
What does a string give in a for loop?37 sec
Where do you set the accumulator?41 sec
Why does factorial start at 1?43 sec
When is the condition checked?38 sec
Which one ends the loop?42 sec
Known count?42 sec
What does num % 10 give?41 sec
