diff --git a/FAQ.md b/FAQ.md index cbdac517b2..0f574d9673 100644 --- a/FAQ.md +++ b/FAQ.md @@ -70,14 +70,14 @@ What's the difference between inheritance and polymorphism? ### What are some things we can do to prepare for CS? -* [CS Wiki](https://github.com/LambdaSchool/CS-Wiki/wiki) -* [Polya's Problem Solving Techniques](https://github.com/LambdaSchool/CS-Wiki/wiki/Polya%27s-Problem-Solving-Techniques) -* [Solving Programming Problems](https://github.com/LambdaSchool/CS-Wiki/wiki/Solving-Programming-Problems) -* [CS Reading List](https://github.com/LambdaSchool/CS-Wiki/wiki/Computer-Science-Reading-List) -* [How to Google effectively](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Google-Effectively) -* [How to read specs and code](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) -* [Command line primer](https://github.com/LambdaSchool/CS-Wiki/wiki/Command-Line-Primer) -* [Coding style guidelines](https://github.com/LambdaSchool/CS-Wiki/wiki/CS-Coding-Style-Guidelines) +* [CS Wiki](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki) +* [Polya's Problem Solving Techniques](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Polya%27s-Problem-Solving-Techniques) +* [Solving Programming Problems](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Solving-Programming-Problems) +* [CS Reading List](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Computer-Science-Reading-List) +* [How to Google effectively](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/How-to-Google-Effectively) +* [How to read specs and code](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) +* [Command line primer](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Command-Line-Primer) +* [Coding style guidelines](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/CS-Coding-Style-Guidelines) ------------------------------------------------------------------------ diff --git a/Pipfile b/Pipfile deleted file mode 100644 index 3e601a5316..0000000000 --- a/Pipfile +++ /dev/null @@ -1,11 +0,0 @@ -[[source]] -url = "https://pypi.org/simple" -verify_ssl = true -name = "pypi" - -[packages] - -[dev-packages] - -[requires] -python_version = "3" diff --git a/Pipfile.lock b/Pipfile.lock deleted file mode 100644 index a36a2c8975..0000000000 --- a/Pipfile.lock +++ /dev/null @@ -1,20 +0,0 @@ -{ - "_meta": { - "hash": { - "sha256": "4e61a4ba9e6f02f50f68627253af5ababd9b1b4c1e10294e48158e1f42c0c5a6" - }, - "pipfile-spec": 6, - "requires": { - "python_version": "3" - }, - "sources": [ - { - "name": "pypi", - "url": "https://pypi.org/simple", - "verify_ssl": true - } - ] - }, - "default": {}, - "develop": {} -} diff --git a/README.md b/README.md index f54d2b3343..d088a085da 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Intro to Python I +_Note: This project spans two modules (modules 1 and 2). You should roughly try to finish the first half of the problems during module 1 and the second half of the problems during module 2._ + It's time to learn a new language! Python! Python is a popular, easy-to-use programming language that has significant @@ -28,32 +30,14 @@ best for learning new languages. ## Resources -* [Installing Python and pipenv](https://github.com/LambdaSchool/CS-Wiki/wiki/Installing-Python-3-and-pipenv) -* [JavaScript<->Python cheatsheet](https://github.com/LambdaSchool/CS-Wiki/wiki/Javascript-Python-cheatsheet) -* [How to read Specs and Code](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) +* [Installing Python 3](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Installing-Python-3) +* [JavaScript<->Python cheatsheet](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/Javascript-Python-cheatsheet) +* [How to read Specs and Code](https://github.com/BloomInstituteOfTechnology/CS-Wiki/wiki/How-to-Read-Specifications-and-Code) * [Python 3 standard library](https://docs.python.org/3.6/library/) ## Getting started -1. Make sure you have Python 3 and pipenv installed. - -2. Go to the directory with the `Pipfile` and run - ``` - pipenv install - ``` - -3. After the install completes, run - ``` - pipenv shell - ``` - This will get you into the virtual environment. At this point, you should be - able to run Python 3 by just running `python`: - ``` - $ python --version - Python 3.6.5 - ``` - - You can exit the virtual environment by typing `exit`. +Make sure you have Python 3 installed. You can check this by running `python3 --version` in your terminal and ensuring that it returns a version string that is at least 3.6.5. ## Goals @@ -66,6 +50,8 @@ best for learning new languages. ## Instructions +_Note: This project spans two modules (modules 1 and 2). You should roughly try to finish the first half of the problems during module 1 and the second half of the problems during module 2._ + Each directory inside the `src/` directory presents exercises revolving around a particular concept in Python. Not all of these concepts are unique to Python (in fact, most probably aren't). This means that you can leverage knowledge you've