├── Admin ├── Final_Projects.md ├── Syllabus.md ├── cheatsheet.md ├── class_norms.md ├── guide_to_turning_a_program_object_oriented.md └── resources.md ├── Assignments ├── Homework_3.md ├── final_project.md ├── homework_1.md ├── homework_2.md └── homework_4 │ ├── homework_4.md │ ├── homework_4_steps.md │ └── upacking_tuples.md ├── Monday Febuary 12th ├── Activities │ ├── grade_calculator.md │ └── phone_number_actvity.md ├── Lectures │ ├── demo_for_class │ │ ├── conditionals.py │ │ └── sample_program.py │ ├── review.md │ └── strings_and_conditionals.md └── about.md ├── Monday Febuary 26th ├── about.md ├── code │ ├── 99-2.py │ ├── 99bottles.py │ ├── attendees.py │ ├── days_of_the_week.py │ ├── intergers.py │ ├── nested.py │ ├── password.py │ ├── range.py │ ├── sandwich.py │ └── sleep_in.py └── lectures │ ├── lists.md │ └── loops.md ├── Monday Febuary 5th ├── about.md ├── about_us │ ├── About_Kelly │ ├── Alex Salim │ ├── Alex.md │ ├── Alex_Ng │ ├── Andy_Schneider.md │ ├── Daniel Ran │ ├── George_Schmitz.md │ ├── Hamid_Tavakoli │ ├── Jess_Garson.md │ ├── Joyce.md │ ├── Michelle_DAmico.md │ ├── Washington.md │ ├── Yasha_Razizadeh │ ├── ayla.md │ ├── directions.md │ ├── example_jess_garson.md │ ├── jeffw.md │ ├── michaelshore.md │ ├── peony.md │ └── thomas.md └── how_to_prep_for_this_class.md ├── Monday March 12th └── about.md ├── Monday March 19th ├── about.md ├── code │ ├── class_example_1.py │ ├── class_example_2.py │ ├── class_example_3.py │ ├── class_example_4.py │ └── pbj_part2.py └── lectures │ ├── Object_Oriented_Python.md │ └── making_atom_a_python_editor.md ├── Monday March 26th ├── about.md └── testing_review │ ├── __pycache__ │ ├── math.cpython-36.pyc │ └── my_math.cpython-36.pyc │ ├── answers.py │ ├── my_math.py │ └── test_my_math.py ├── Monday March 5th ├── about.md ├── code │ ├── class_code.py │ └── dictionary.py └── lectures │ ├── dictionaries.md │ ├── sets.md │ └── tuples.md ├── README.md ├── Thursday Febuary 15th ├── Activity │ └── rewriting_with_functions.md ├── Lectures │ ├── advanced_conditionals_and_functions.md │ └── review.md └── about.md ├── Thursday Febuary 22nd ├── Actvities │ ├── PBJ_Time.md │ ├── diagram_a_function.md │ └── rewrite_your_homework.md ├── about.md ├── code │ ├── another_option.py │ ├── global.py │ ├── keywords.py │ ├── main.py │ ├── phone_numbers.py │ ├── same_name.py │ └── square.py └── review_of_functions.md ├── Thursday Febuary 8th ├── about.md ├── group_actvities │ ├── command_line_activity.md │ ├── hello_world.md │ └── how_to_keep_your_fork_current.md └── live_code.md ├── Thursday March 15th ├── about.md ├── code_and_files │ ├── .ipynb_checkpoints │ │ ├── Untitled-checkpoint.ipynb │ │ ├── file handling-checkpoint.ipynb │ │ ├── os-checkpoint.ipynb │ │ ├── pandas-checkpoint.ipynb │ │ └── pandas_demo-checkpoint.ipynb │ ├── Untitled.ipynb │ ├── clean_name_score.csv │ ├── cleaned_name_score.csv │ ├── file handling.ipynb │ ├── file.txt │ ├── name_score.csv │ ├── os.ipynb │ ├── pandas.ipynb │ ├── pandas_demo.ipynb │ ├── states.txt │ ├── turtles.txt │ └── write_a_message.py ├── lectures │ ├── file_handling.md │ ├── how_the_internet_works.md │ ├── os.md │ ├── pandas.md │ └── review.md └── pair_programming.md ├── Thursday March 1st ├── about.md ├── code │ ├── break.py │ ├── continue.py │ ├── count.py │ ├── enumerate.py │ ├── pass.py │ └── zip.py └── lectures │ ├── advanced_loops.md │ ├── debuggingtalk.pptx │ └── review_of_python_concepts.md ├── Thursday March 22nd ├── About.md ├── activities │ ├── finsh_the_tests.md │ ├── pbj_time.md │ └── tdd.md ├── code │ ├── __pycache__ │ │ └── math.cpython-36.pyc │ ├── inhertiance │ │ ├── ex_1.py │ │ ├── ex_2.py │ │ ├── ex_3.py │ │ ├── ex_4.py │ │ └── ex_5.py │ ├── polymorphism │ │ ├── ex_1.py │ │ ├── ex_2.py │ │ ├── ex_3.py │ │ └── ex_4.py │ └── testing │ │ ├── __pycache__ │ │ └── math.cpython-36.pyc │ │ ├── my_math.py │ │ └── test_my_math.py └── lectures │ ├── inheritance.md │ ├── polymorphism.md │ └── testing.md └── Thursday March 8th ├── Lectures ├── git_and_github.md └── virtualenv_pip_and_notebooks.md ├── about.md └── pair_programming └── pair_programming.md /Admin/Final_Projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Admin/Final_Projects.md -------------------------------------------------------------------------------- /Admin/Syllabus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Admin/Syllabus.md -------------------------------------------------------------------------------- /Admin/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Admin/cheatsheet.md -------------------------------------------------------------------------------- /Admin/class_norms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Admin/class_norms.md -------------------------------------------------------------------------------- /Admin/guide_to_turning_a_program_object_oriented.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Admin/guide_to_turning_a_program_object_oriented.md -------------------------------------------------------------------------------- /Admin/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Admin/resources.md -------------------------------------------------------------------------------- /Assignments/Homework_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Assignments/Homework_3.md -------------------------------------------------------------------------------- /Assignments/final_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Assignments/final_project.md -------------------------------------------------------------------------------- /Assignments/homework_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Assignments/homework_1.md -------------------------------------------------------------------------------- /Assignments/homework_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Assignments/homework_2.md -------------------------------------------------------------------------------- /Assignments/homework_4/homework_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Assignments/homework_4/homework_4.md -------------------------------------------------------------------------------- /Assignments/homework_4/homework_4_steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Assignments/homework_4/homework_4_steps.md -------------------------------------------------------------------------------- /Assignments/homework_4/upacking_tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Assignments/homework_4/upacking_tuples.md -------------------------------------------------------------------------------- /Monday Febuary 12th/Activities/grade_calculator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 12th/Activities/grade_calculator.md -------------------------------------------------------------------------------- /Monday Febuary 12th/Activities/phone_number_actvity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 12th/Activities/phone_number_actvity.md -------------------------------------------------------------------------------- /Monday Febuary 12th/Lectures/demo_for_class/conditionals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 12th/Lectures/demo_for_class/conditionals.py -------------------------------------------------------------------------------- /Monday Febuary 12th/Lectures/demo_for_class/sample_program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 12th/Lectures/demo_for_class/sample_program.py -------------------------------------------------------------------------------- /Monday Febuary 12th/Lectures/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 12th/Lectures/review.md -------------------------------------------------------------------------------- /Monday Febuary 12th/Lectures/strings_and_conditionals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 12th/Lectures/strings_and_conditionals.md -------------------------------------------------------------------------------- /Monday Febuary 12th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 12th/about.md -------------------------------------------------------------------------------- /Monday Febuary 26th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/about.md -------------------------------------------------------------------------------- /Monday Febuary 26th/code/99-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/99-2.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/99bottles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/99bottles.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/attendees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/attendees.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/days_of_the_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/days_of_the_week.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/intergers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/intergers.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/nested.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/password.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/range.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/sandwich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/sandwich.py -------------------------------------------------------------------------------- /Monday Febuary 26th/code/sleep_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/code/sleep_in.py -------------------------------------------------------------------------------- /Monday Febuary 26th/lectures/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/lectures/lists.md -------------------------------------------------------------------------------- /Monday Febuary 26th/lectures/loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 26th/lectures/loops.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/About_Kelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/About_Kelly -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Alex Salim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Alex Salim -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Alex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Alex.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Alex_Ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Alex_Ng -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Andy_Schneider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Andy_Schneider.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Daniel Ran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Daniel Ran -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/George_Schmitz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/George_Schmitz.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Hamid_Tavakoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Hamid_Tavakoli -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Jess_Garson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Jess_Garson.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Joyce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Joyce.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Michelle_DAmico.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Michelle_DAmico.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Washington.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Washington.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/Yasha_Razizadeh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/Yasha_Razizadeh -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/ayla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/ayla.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/directions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/directions.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/example_jess_garson.md: -------------------------------------------------------------------------------- 1 | # Jessica Garson 2 | Hi this is an example one. 3 | 4 | -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/jeffw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/jeffw.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/michaelshore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/michaelshore.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/peony.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/peony.md -------------------------------------------------------------------------------- /Monday Febuary 5th/about_us/thomas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/about_us/thomas.md -------------------------------------------------------------------------------- /Monday Febuary 5th/how_to_prep_for_this_class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday Febuary 5th/how_to_prep_for_this_class.md -------------------------------------------------------------------------------- /Monday March 12th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 12th/about.md -------------------------------------------------------------------------------- /Monday March 19th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/about.md -------------------------------------------------------------------------------- /Monday March 19th/code/class_example_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/code/class_example_1.py -------------------------------------------------------------------------------- /Monday March 19th/code/class_example_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/code/class_example_2.py -------------------------------------------------------------------------------- /Monday March 19th/code/class_example_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/code/class_example_3.py -------------------------------------------------------------------------------- /Monday March 19th/code/class_example_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/code/class_example_4.py -------------------------------------------------------------------------------- /Monday March 19th/code/pbj_part2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/code/pbj_part2.py -------------------------------------------------------------------------------- /Monday March 19th/lectures/Object_Oriented_Python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/lectures/Object_Oriented_Python.md -------------------------------------------------------------------------------- /Monday March 19th/lectures/making_atom_a_python_editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 19th/lectures/making_atom_a_python_editor.md -------------------------------------------------------------------------------- /Monday March 26th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 26th/about.md -------------------------------------------------------------------------------- /Monday March 26th/testing_review/__pycache__/math.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 26th/testing_review/__pycache__/math.cpython-36.pyc -------------------------------------------------------------------------------- /Monday March 26th/testing_review/__pycache__/my_math.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 26th/testing_review/__pycache__/my_math.cpython-36.pyc -------------------------------------------------------------------------------- /Monday March 26th/testing_review/answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 26th/testing_review/answers.py -------------------------------------------------------------------------------- /Monday March 26th/testing_review/my_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 26th/testing_review/my_math.py -------------------------------------------------------------------------------- /Monday March 26th/testing_review/test_my_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 26th/testing_review/test_my_math.py -------------------------------------------------------------------------------- /Monday March 5th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 5th/about.md -------------------------------------------------------------------------------- /Monday March 5th/code/class_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 5th/code/class_code.py -------------------------------------------------------------------------------- /Monday March 5th/code/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 5th/code/dictionary.py -------------------------------------------------------------------------------- /Monday March 5th/lectures/dictionaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 5th/lectures/dictionaries.md -------------------------------------------------------------------------------- /Monday March 5th/lectures/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 5th/lectures/sets.md -------------------------------------------------------------------------------- /Monday March 5th/lectures/tuples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Monday March 5th/lectures/tuples.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/README.md -------------------------------------------------------------------------------- /Thursday Febuary 15th/Activity/rewriting_with_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 15th/Activity/rewriting_with_functions.md -------------------------------------------------------------------------------- /Thursday Febuary 15th/Lectures/advanced_conditionals_and_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 15th/Lectures/advanced_conditionals_and_functions.md -------------------------------------------------------------------------------- /Thursday Febuary 15th/Lectures/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 15th/Lectures/review.md -------------------------------------------------------------------------------- /Thursday Febuary 15th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 15th/about.md -------------------------------------------------------------------------------- /Thursday Febuary 22nd/Actvities/PBJ_Time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/Actvities/PBJ_Time.md -------------------------------------------------------------------------------- /Thursday Febuary 22nd/Actvities/diagram_a_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/Actvities/diagram_a_function.md -------------------------------------------------------------------------------- /Thursday Febuary 22nd/Actvities/rewrite_your_homework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/Actvities/rewrite_your_homework.md -------------------------------------------------------------------------------- /Thursday Febuary 22nd/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/about.md -------------------------------------------------------------------------------- /Thursday Febuary 22nd/code/another_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/code/another_option.py -------------------------------------------------------------------------------- /Thursday Febuary 22nd/code/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/code/global.py -------------------------------------------------------------------------------- /Thursday Febuary 22nd/code/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/code/keywords.py -------------------------------------------------------------------------------- /Thursday Febuary 22nd/code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/code/main.py -------------------------------------------------------------------------------- /Thursday Febuary 22nd/code/phone_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/code/phone_numbers.py -------------------------------------------------------------------------------- /Thursday Febuary 22nd/code/same_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/code/same_name.py -------------------------------------------------------------------------------- /Thursday Febuary 22nd/code/square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/code/square.py -------------------------------------------------------------------------------- /Thursday Febuary 22nd/review_of_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 22nd/review_of_functions.md -------------------------------------------------------------------------------- /Thursday Febuary 8th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 8th/about.md -------------------------------------------------------------------------------- /Thursday Febuary 8th/group_actvities/command_line_activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 8th/group_actvities/command_line_activity.md -------------------------------------------------------------------------------- /Thursday Febuary 8th/group_actvities/hello_world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 8th/group_actvities/hello_world.md -------------------------------------------------------------------------------- /Thursday Febuary 8th/group_actvities/how_to_keep_your_fork_current.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 8th/group_actvities/how_to_keep_your_fork_current.md -------------------------------------------------------------------------------- /Thursday Febuary 8th/live_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday Febuary 8th/live_code.md -------------------------------------------------------------------------------- /Thursday March 15th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/about.md -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/.ipynb_checkpoints/file handling-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/.ipynb_checkpoints/file handling-checkpoint.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/.ipynb_checkpoints/os-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/.ipynb_checkpoints/os-checkpoint.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/.ipynb_checkpoints/pandas-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/.ipynb_checkpoints/pandas-checkpoint.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/.ipynb_checkpoints/pandas_demo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/.ipynb_checkpoints/pandas_demo-checkpoint.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/Untitled.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/clean_name_score.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/clean_name_score.csv -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/cleaned_name_score.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/cleaned_name_score.csv -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/file handling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/file handling.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/file.txt: -------------------------------------------------------------------------------- 1 | This file now exists! -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/name_score.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/name_score.csv -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/os.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/os.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/pandas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/pandas.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/pandas_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/pandas_demo.ipynb -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/states.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/states.txt -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/turtles.txt: -------------------------------------------------------------------------------- 1 | Family of baby turtles -------------------------------------------------------------------------------- /Thursday March 15th/code_and_files/write_a_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/code_and_files/write_a_message.py -------------------------------------------------------------------------------- /Thursday March 15th/lectures/file_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/lectures/file_handling.md -------------------------------------------------------------------------------- /Thursday March 15th/lectures/how_the_internet_works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/lectures/how_the_internet_works.md -------------------------------------------------------------------------------- /Thursday March 15th/lectures/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/lectures/os.md -------------------------------------------------------------------------------- /Thursday March 15th/lectures/pandas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/lectures/pandas.md -------------------------------------------------------------------------------- /Thursday March 15th/lectures/review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/lectures/review.md -------------------------------------------------------------------------------- /Thursday March 15th/pair_programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 15th/pair_programming.md -------------------------------------------------------------------------------- /Thursday March 1st/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/about.md -------------------------------------------------------------------------------- /Thursday March 1st/code/break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/code/break.py -------------------------------------------------------------------------------- /Thursday March 1st/code/continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/code/continue.py -------------------------------------------------------------------------------- /Thursday March 1st/code/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/code/count.py -------------------------------------------------------------------------------- /Thursday March 1st/code/enumerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/code/enumerate.py -------------------------------------------------------------------------------- /Thursday March 1st/code/pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/code/pass.py -------------------------------------------------------------------------------- /Thursday March 1st/code/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/code/zip.py -------------------------------------------------------------------------------- /Thursday March 1st/lectures/advanced_loops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/lectures/advanced_loops.md -------------------------------------------------------------------------------- /Thursday March 1st/lectures/debuggingtalk.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/lectures/debuggingtalk.pptx -------------------------------------------------------------------------------- /Thursday March 1st/lectures/review_of_python_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 1st/lectures/review_of_python_concepts.md -------------------------------------------------------------------------------- /Thursday March 22nd/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/About.md -------------------------------------------------------------------------------- /Thursday March 22nd/activities/finsh_the_tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/activities/finsh_the_tests.md -------------------------------------------------------------------------------- /Thursday March 22nd/activities/pbj_time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/activities/pbj_time.md -------------------------------------------------------------------------------- /Thursday March 22nd/activities/tdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/activities/tdd.md -------------------------------------------------------------------------------- /Thursday March 22nd/code/__pycache__/math.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/__pycache__/math.cpython-36.pyc -------------------------------------------------------------------------------- /Thursday March 22nd/code/inhertiance/ex_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/inhertiance/ex_1.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/inhertiance/ex_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/inhertiance/ex_2.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/inhertiance/ex_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/inhertiance/ex_3.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/inhertiance/ex_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/inhertiance/ex_4.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/inhertiance/ex_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/inhertiance/ex_5.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/polymorphism/ex_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/polymorphism/ex_1.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/polymorphism/ex_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/polymorphism/ex_2.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/polymorphism/ex_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/polymorphism/ex_3.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/polymorphism/ex_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/polymorphism/ex_4.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/testing/__pycache__/math.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/testing/__pycache__/math.cpython-36.pyc -------------------------------------------------------------------------------- /Thursday March 22nd/code/testing/my_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/testing/my_math.py -------------------------------------------------------------------------------- /Thursday March 22nd/code/testing/test_my_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/code/testing/test_my_math.py -------------------------------------------------------------------------------- /Thursday March 22nd/lectures/inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/lectures/inheritance.md -------------------------------------------------------------------------------- /Thursday March 22nd/lectures/polymorphism.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/lectures/polymorphism.md -------------------------------------------------------------------------------- /Thursday March 22nd/lectures/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 22nd/lectures/testing.md -------------------------------------------------------------------------------- /Thursday March 8th/Lectures/git_and_github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 8th/Lectures/git_and_github.md -------------------------------------------------------------------------------- /Thursday March 8th/Lectures/virtualenv_pip_and_notebooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 8th/Lectures/virtualenv_pip_and_notebooks.md -------------------------------------------------------------------------------- /Thursday March 8th/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 8th/about.md -------------------------------------------------------------------------------- /Thursday March 8th/pair_programming/pair_programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JessicaGarson/NYU-Intro-to-Python-Spring-2018/HEAD/Thursday March 8th/pair_programming/pair_programming.md --------------------------------------------------------------------------------