Python code quiz
0.04MB. 0 audio & 0 images. Updated 2014-04-02.
Description
Sample (from 211 notes)
| Code | x = [0, 1, 2, 3] x[::2] = [] print(x) |
| Output | ValueError: attempt to assign sequence of size 0 to extended slice of size 2Extended slices aren't flexible. When assigning to an extended slice, the list on the right hand side of the statement must contain the same number of items as the slice it is replacing. |
| Tags | list python3 remove slice |
| Code | text = 'goodbye cruel world ' words = text.split() print(words) |
| Output | ['goodbye', 'cruel', 'world']By default, string split method uses all white space as a separator |
| Tags | python3 split string |
| Code | def func(): yield 1 yield 2 yield 3 print(type(func)) print(type(func())) |
| Output | <class 'function'><class 'generator'>Function with a yield is a generator function, and returns a generator. |
| Tags | generator python3 yield |
After the file is downloaded, double-click on it to open it in the desktop program.
At this time, it is not possible to add shared decks directly to your AnkiWeb account - they need to be added from the desktop then synchronized to AnkiWeb.
- Reviews

