PythonKC May 2017 Coffee & Code

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from datetime import date
today = date(2017, 5, 13)

def greetings():
    print("Welcome to PythonKC Coffee & Code.")
    print("Today is {}".format(today.strftime("%A, %B %d, %Y")))
    print("Thanks to the Johnson County Library system for hosting.")

if __name__ == '__main__':
    greetings()

PythonKC Coffee & Code

Upcoming Events

Python News and Resources

Command Line Workshop Resources

  • Udacity Linux Command Line Basics - A free course teaching the Linux command line.
  • Argparse Tutorial - How to use Python's built-in argparser module to build command line applications.
  • Cloud9 IDE - An easy, free way to get to a Linux command line if you don't have a Linux machine/VPS or feel like fighting with Virtual Machines.

Last posts

  1. PythonKC Spring 2017 Meetup

    tags: pythonkcseasonal meetups

  2. PythonKC March 2017 Coffee & Code

    tags: pythonkccoffee & code

  3. PythonKC February 2017 Coffee & Code

    tags: pythonkccoffee & code

  4. PythonKC Winter 2017 Meetup

    tags: pythonkcseasonal meetups

  5. PythonKC January 2017 Coffee & Code

    tags: pythonkccoffee & code