Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
16 changes: 8 additions & 8 deletions FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ What's the difference between inheritance and polymorphism?
<a name="q100"></a>
### 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)

------------------------------------------------------------------------

Expand Down
11 changes: 0 additions & 11 deletions Pipfile

This file was deleted.

20 changes: 0 additions & 20 deletions Pipfile.lock

This file was deleted.

30 changes: 8 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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

Expand All @@ -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
Expand Down