{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "# Python Basics\n", "## Printing Hello World" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Python attack\n" ] } ], "source": [ "print(\"Python attack\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Using Python as a Calculator" ] }, { "cell_type": "code", "execution_count": 23, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "14" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "7*2" ] }, { "cell_type": "code", "execution_count": 26, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "6" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "8-2" ] }, { "cell_type": "code", "execution_count": 28, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "0" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "2^2" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Print a List of Words with a Loop" ] }, { "cell_type": "code", "execution_count": 57, "metadata": { "collapsed": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "hello\n", "cruel\n", "world\n" ] } ], "source": [ "words=[\"hello\",\"cruel\",\"world\"]\n", "\n", "for word in words:\n", " print(word)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Create Your Own Function" ] }, { "cell_type": "code", "execution_count": 102, "metadata": { "collapsed": false }, "outputs": [], "source": [ "def strange(x):\n", " i=0\n", " n=x\n", " for i
\n", "Fido.runs()

\n", "Fido.plays()

" ] }, { "cell_type": "markdown", "metadata": { "collapsed": true }, "source": [ "## Exercise: Please use dot notation with sine (sin) function from the math library to compute sin(pi/2)" ] }, { "cell_type": "code", "execution_count": 111, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "1.0" ] }, "execution_count": 111, "metadata": {}, "output_type": "execute_result" } ], "source": [ "math.sin(pi/2)" ] }, { "cell_type": "code", "execution_count": 113, "metadata": { "collapsed": false }, "outputs": [ { "data": { "text/plain": [ "5040" ] }, "execution_count": 113, "metadata": {}, "output_type": "execute_result" } ], "source": [ "math.factorial(7)" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": false }, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.9" } }, "nbformat": 4, "nbformat_minor": 0 }