Python 101: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
No edit summary
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=OSE Rapid Learning=
OSE pursues rapid learning by providing an immersion learning environment. For Python, the infrasctructure to be created involves:
*Addition of a python editor (Integrated Development Environment) and any necessary utilities to OSE Linux
*Instructionals for programming using the selected Python editor
*Blackboard video covering the necessary concepts
*Software architecture considerations for using Python and interacting with python
*Hackable code snippets that are testable in an editor.
=Execution=
*Select the best python IDE / editor that meets [[OSE Specifications]]
*Add the editor to OSE Linux
*Provide instructionals based on the selected IDE
*Include important libraries in the OSE Linux distribution
=Resources=
http://www.afterhoursprogramming.com/tutorial/Python/Operators/
http://www.afterhoursprogramming.com/tutorial/Python/Operators/
https://www.learnpython.org/


https://www.codecademy.com/learn/python
https://www.codecademy.com/learn/python
Line 10: Line 28:
# Debugging
# Debugging
# List Comprehensions, and an Introduction to Generators and Functional Programming
# List Comprehensions, and an Introduction to Generators and Functional Programming
=OSE Case=
Lex says:
I very highly recommend PyCharm. The community edition is Open Source.​
https://www.jetbrains.com/pycharm/download/#section=linux
https://github.com/JetBrains/intellij-community/tree/master/python
We are pretty lucky that JetBrains open sourced this stuff, PyCharm is the most advanced Python editor out there. This is like if SolidWorks was open sourced.
[[Category:101 101s]]

Latest revision as of 04:03, 8 May 2018

OSE Rapid Learning

OSE pursues rapid learning by providing an immersion learning environment. For Python, the infrasctructure to be created involves:

  • Addition of a python editor (Integrated Development Environment) and any necessary utilities to OSE Linux
  • Instructionals for programming using the selected Python editor
  • Blackboard video covering the necessary concepts
  • Software architecture considerations for using Python and interacting with python
  • Hackable code snippets that are testable in an editor.

Execution

  • Select the best python IDE / editor that meets OSE Specifications
  • Add the editor to OSE Linux
  • Provide instructionals based on the selected IDE
  • Include important libraries in the OSE Linux distribution

Resources

http://www.afterhoursprogramming.com/tutorial/Python/Operators/

https://www.learnpython.org/

https://www.codecademy.com/learn/python

A basic competency list for using Python to solve problems might involve
  1. Variables, Types, Operators, and Objects
  2. Functions; First-Class Objects and Basic Structured Programming
  3. Modules and Importing; Reusing Code, Finding and Installing Packages
  4. Flow Control Structures and Object-Oriented Programming
  5. Debugging
  6. List Comprehensions, and an Introduction to Generators and Functional Programming

OSE Case

Lex says:

I very highly recommend PyCharm. The community edition is Open Source.​

https://www.jetbrains.com/pycharm/download/#section=linux

https://github.com/JetBrains/intellij-community/tree/master/python

We are pretty lucky that JetBrains open sourced this stuff, PyCharm is the most advanced Python editor out there. This is like if SolidWorks was open sourced.