table markdown jupyter code example
Example 1: jupyter notebook create table
| Stretch/Untouched | ProbDistribution | Accuracy |
| --- | --- | --- |
| Stretched | Gaussian | .843 |
Example 2: Jupyter markdown
Jupyter Markdown Notation
Normal
*Italics* or _Italics_
**Bold** or __Bold__
**_Bold and Italics_**
~~Strike Through~~
* Bullet Point or
- Bullet Point or
+ Bullet Point
1. Numbered
1. Sub Number
www.google.com
Example 3: code in markdown jupyter
```python
print "Hello World"
```
o/p
print "Hello World"