|
1 | 1 | { |
2 | 2 | "cells": [ |
3 | 3 | { |
4 | | -"cell_type":"code", |
5 | | -"execution_count":null, |
| 4 | +"cell_type":"markdown", |
6 | 5 | "metadata": { |
7 | 6 | "collapsed":true |
8 | 7 | }, |
9 | | -"outputs": [], |
10 | 8 | "source": [ |
11 | | -"# PYTHON BASICS - source-nerd" |
| 9 | +"##PYTHON BASICS - source-nerd" |
12 | 10 | ] |
13 | 11 | }, |
14 | 12 | { |
15 | | -"cell_type":"code", |
16 | | -"execution_count":1, |
| 13 | +"cell_type":"markdown", |
17 | 14 | "metadata": {}, |
18 | | -"outputs": [], |
19 | 15 | "source": [ |
20 | | -"\"\"\"\n", |
21 | | -" 1. Data Structures in Python\n", |
22 | | -" a. List\n", |
23 | | -" b. Dictionary\n", |
24 | | -" c. Tuples\n", |
25 | | -"\"\"\"" |
| 16 | +"## 1. Data Structures in Python\n", |
| 17 | +"\ta. List\n", |
| 18 | +"\tb. Dictionary\n", |
| 19 | +"\tc. Tuples" |
26 | 20 | ] |
27 | 21 | }, |
28 | 22 | { |
29 | | -"cell_type":"heading", |
| 23 | +"cell_type":"markdown", |
30 | 24 | "metadata": {}, |
31 | | -"level":3, |
32 | 25 | "source": [ |
33 | | -"1.a. List\n", |
34 | | -"List literals are written within square brackets [ ]. Lists work similarly to strings -- use the len() function and square brackets [ ] to access data, with the first element at index 0. (See the official python.org list docs.)" |
| 26 | +"###1.a. List\n", |
| 27 | +"List literals are written within square brackets [ ]. Lists work similarly to strings -- use the len() function and square brackets [ ] to access data, with the first element at index 0. (See the official python.org list docs.)\n" |
35 | 28 | ] |
36 | 29 | }, |
37 | 30 | { |
|