Coder Social home page Coder Social logo

pyjunior's Introduction

Python: Junior

INT10 Junior Python course :)

Course contents and topics (roughly separated):

basics: Python basics and fundamentals

print  while  if  elif  else  break  continue  in  True  False  raw_input  int  str  range  [:]
=  ==  <  >  <=  >=  !=  +  -  *  /  %  ' '  " "  ''' '''

datastruc: Lists, tuples, dicts, sets

list  tuple  dict  set  sorted  del  in  not 
list  .append()  .extend()  .insert()  .remove()  .pop()  .index()  .count()  .sort()  .reverse()
dict  .clear()  .copy()  .get()  .items()  .keys()  .values()  .pop()
-  |  &  ^  <  >  <=  >=  []  ()  {}

fileio: File reading and writing

open  with  
file  .read()  .readline()  .readlines()  .write()  .writelines()  .seek()  .close()
pickle  .load()  .dump()
cPickle  .load()  .dump()
sys.stdin  
textwrap.wrap()

fltkgui: A taste of pyFLTK GUI programming

fltk  Fl_Window  Fl_Button  Fl_Browser  fl_file_chooser
.begin()  .end()  .color()  .callback()  .show()  .redraw()  .add()  Fl.run()

functions: Assorted functions, generators, and built-ins

def  return  yield  lambda  sorted  xrange  sum  max

loops: While and for loops

while  for  in  break

mathy: Math-related programs (e.g., prime finder, Fibonacci, amortization)

int  float  round
math  .log10()
random  .randrange()
decimal  .Decimal()  .getcontext()

misc: Miscellaneous

networking: Networking with socket module clients and servers

socket  .socket()  .setsockopt()
AF_INET  SOCK_STREAM  SOCK_DGRAM  SOL_SOCKET  SO_REUSEADDR
.bind()  .send()  .recv()  .listen()  .accept()  .sendto()  .recvfrom()  .close()

notes: Course notes on various topics

pystdlib: Explorations of the standard library, built-in functions and methods

ord  chr
random  .randrange()  .sample()
urllib.urlopen()  sys.argv  time.sleep()
str  .startswith()  .endswith()  .lower()  .upper()  .find()  .join()  .replace()  .split()  .strip()

sockreview: Concise review of Python sockets

*Note: Many programs may have poorly formatted, badly written or inefficiently designed code. As this was a beginner's course, these programs will not be modified and will instead be preserved as a record of learning.

pyjunior's People

Watchers

James Cloos avatar Nicholas Hu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.