Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixing merge conflicts
  • Loading branch information
tkoar committed Apr 3, 2018
commit 735e8dc0debbf7a3ca46a06efadde374d9a45d0f
8 changes: 8 additions & 0 deletions .learn
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
jupyter_notebook: true
tags:
- jupyter
- python

languages:
- python

resources: 0
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,3 @@ int("7285553334") + 2 # 7285553336
### Summary

Your first lab done! Sweet. In this lab, you practiced working with string methods to operate on and answer questions about strings. You wrote methods that return Booleans. And you changed strings to an `int` to then perform addition. So much of working with data, is ensuring that our data is properly formatted so we can then operate on it and in this lab you saw how to use code to just that.


```python

```
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pandas
Unittest2
6 changes: 6 additions & 0 deletions test/index_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import unittest2 as unittest
from ipynb.fs.full.index import *

class TestPythonDatatypes(unittest.TestCase):
def test_passes(self):
self.assertEqual(True, True)
You are viewing a condensed version of this merge commit. You can view the full changes here.