Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
# webinar review 04/22/21 # Ch 8, 9, 11 and 12 end of chapter are critical # Be able to recognize and use common data types and modules # integers # floats # strings # lists # dictionaries # sets # tuples # # modules # math # random # datetime # os # calendar # pandas # operators # = # assignment # == # equality - asking if it's equal # + # - # * # / # // # floor division # % # modulo - gives the (whole number) REMAINDER, how many didn't fit? # print(41 // 16, "pounds and") # print(41 % 16, "ounces") # ** # != # < # > # <= # >= # not # += # x += 1 is the same as x = x + 1 # -= # FUNCTIONS # defining vs calling # parameters vs arguments # x = 5 # don't do that with parameters # return vs print() # methods of a data type are themselves functions # IF and IF/ELSE and IF/ELIF/ELSE # LOOPS are for repeating action # WHILE LOOP is an IF that repeats as long as the condition is TRUE # FOR LOOP is tied to a container # for __ in __: # for item in myList: # for i in range(0, 5): # "membership check" myTuple = ("Gilligan", "Castaway002", "red", "crew") # item __ in __ print("Gilligan" in myTuple) # True print("Skipper" in myTuple) # False if "red" in myTuple: print("I found red") # print(dir(str)) # STRINGS methods # myString.format() # myString.join() # myString.split() # myString.find() # myString.replace() # used to "remove" # myString.isUpper() # and .isLower() # myString.upper() # myString.lower() # myString.title() # myString.capitalize() # myString.strip() # .lstrip() and rstrip() # myString.count() # Be able to SLICE like it's second nature # BUILDING UP LARGER STRINGS x = "Sue" greeting = "How do you do?" # myString = "My name is " + x + ". " + greeting # myString = "My name is %s. %s" % (x, greeting) myString = "My name is {}. {}".format(x, greeting) print(myString) # LISTS myList = ["Sam", "Bucky", "Sharon", "Bad Cap"] # myList.append() # myList.insert() # myList.pop() # by index # myList.remove() # by value # myList.count() # myList.sort(reverse=False) # myList.reverse() # myList.index() # myList.copy() # myList.clear() # DICTIONARIES scoobies = { "Scooby": "a blue collar", "Shaggy": "green", "Velma": "orange", "Daphne": "purple", "Fred": "an ascot" } # scoobies["Scooby Dumb"] = "red" # for key in scoobies: # # nameOfDict[key] --> get value for key # print("{} always wears {}.".format(key, scoobies[key])) # SETS - remember sets have no order, no duplicates (all unique) # mySet.add() # mySet.remove() # mySet.discard() # MODULES # MATH # math.e # math.sqrt() # math.pow() # raise x to y power # math.floor() # always rounds down # math.ceil() # always rounds up # math.exp() # don't confuse with .pow(), this raise math.e to a power # RANDOM # random.random() # returns float between 0 and 1 # random.choice() # gets random value from a list # random.randint() # randInt is INCLUSIVE of the stop number # random.randrange() # randrangE EXCLUDES the stop, like normal # DATETIME module import datetime # print(dir(datetime)) # focus on # datetime.datetime # represents a point in time # datetime.timedelta # represents a period of time: a difference or delta dt = datetime.datetime(2021, 1, 1) print(dt) dt = datetime.datetime.today() print(dt) print(dt.month) print(dt.hour) td = datetime.timedelta(days=7) print(dt + td) print(td.total_seconds()) print(dir(datetime.timedelta)) # OS # os.getcwd() # os.listdir() # os.path.isdir() # BUILT IN FUNCTIONS # print() # help() # dir() # len() # min() # max() # sum() # range() # str() # list() # dict() # tuple() # set() # int() # float() # enumerate() # round() for i, item in enumerate(myList): print(i, item) for i in range(len(myList)): print(i, "->", myList[i]) # HTML is just strings # IMPORT statements import math # import it all from datetime import date # partial --> not datetime.date.today() but date.today() import random as rr # rr.randrange() print(round(math.pi, 10)) def addToPi(someNum): import math return math.pi + someNum print(addToPi(0)) print(addToPi(1)) print(addToPi(5)) print(addToPi(math.e)) def addToList(someList, someValue): if someValue in someList: print(someList) else: someList.append(someValue) print(someList) addToList(myList, "Wanda") addToList([1, 2, math.pi], math.pow(math.e, 3)) addToList([1, 2, math.pi], math.exp(3)) addToList([1, 2, math.pi], round(math.exp(3), 2)) # strings and float precision print("%.2f" % math.e) print("{:.2f}".format(math.e)) # # print(dir(math))
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Untitled
1 hour ago | 0.52 KB
P4IGNORE for Unreal Development
1 hour ago | 2.10 KB
Untitled
1 hour ago | 13.08 KB
Matthew Quote
2 hours ago | 0.18 KB
Input_AOC
6 hours ago | 18.01 KB
Untitled
19 hours ago | 13.15 KB
Analog GPUs: THE FUTURE
1 day ago | 8.88 KB
Quotes I believe to be true.
1 day ago | 0.16 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!