Last login: Thu Jan 19 18:31:22 from 192.168.1.1 odd-2% cd odd-2% cd wp/lecture/2012_01_Intro_Programming odd-2% ls Extra_5.pdf Lecture1.key Lecture4.key grades.numbers Homework2.pdf Lecture2.key Lecture4.pdf lec3 Homework3.pdf Lecture2.pdf Lecture5.key lec4 Homework4.pdf Lecture3.key Lecture5.pdf lec5 Homework_5.pdf Lecture3.pdf day1handout.pages odd-2% cd lec5 odd-2% ls mygrep.py mygrep_outline.py odd-2% cls odd-2% odd-2% odd-2% ls mygrep.py mygrep_outline.py odd-2% vi mygrep_outline.py zsh: suspended vi mygrep_outline.py odd-2% cat mygrep.py #!/usr/bin/env python import argparse parser = argparse.ArgumentParser(description='Search for a substring within a file.') parser.add_argument("-i","--ignore_case",action="store_true", default=False,help="Case insensitive search") parser.add_argument("substr",type=str,help="Substring to search for") parser.add_argument("files",type=str,nargs="+", help="Filenames to search") options = parser.parse_args() for f in options.files: if len(options.files)>1 : print "%s:"%f for line in open(f,"r"): if options.substr in line : print line, elif options.ignore_case and options.substr.lower() in line.lower() : print line, odd-2% fg [1] + continued vi mygrep_outline.py odd-2% ls mygrep.py mygrep_outline.py odd-2% chmod a+x mygrep_outline.py odd-2% ls mygrep.py mygrep_outline.py odd-2% vi mygrep_outline.py odd-2% odd-2% ls mygrep.py mygrep_outline.py odd-2% mygrep_outline.py line mygrep_outline.py for line in infile: if options.substr.lower() in line.lower() : print line if options.substr in line : print line odd-2% !vi vi mygrep_outline.py odd-2% mygrep_outline.py line mygrep_outline.py for line in infile: if options.substr.lower() in line.lower() : print line, if options.substr in line : print line, odd-2% mygrep_outline.py line mygrep_outline.py mygrep.py mygrep_outline.py : for line in infile: if options.substr.lower() in line.lower() : print line, if options.substr in line : print line, mygrep.py : for line in open(f,"r"): if options.substr in line : print line, elif options.ignore_case and options.substr.lower() in line.lower() : print line, odd-2% odd-2% ls mygrep.py mygrep_outline.py odd-2% vi mygrep_outline.py odd-2% vi x.py odd-2% python x.py odd-2% !vi vi x.py odd-2% python x.py 25 odd-2% ls mygrep.py mygrep_outline.py x.py odd-2% python Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> "%s %d"%("abc",5) 'abc 5' >>> "{s} {d}".format("abc",5) Traceback (most recent call last): File "", line 1, in KeyError: 's' >>> odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: import time In [2]: time.sleep(3) In [3]: time.sleep(.2) In [4]: time.time() Out[4]: 1327337774.379812 In [5]: time.time() Out[5]: 1327337827.952546 In [6]: time.clock() Out[6]: 0.189449 In [7]: time.clock() Out[7]: 0.19033 In [8]: time.clock() Out[8]: 0.191184 In [9]: time.asctime(time.time()) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /Users/stevel/wp/lecture/2012_01_Intro_Programming/lec5/ in () TypeError: argument must be 9-item sequence, not float In [10]: time.ctime(time.time()) Out[10]: 'Mon Jan 23 10:59:36 2012' In [11]: time.ctime(0) Out[11]: 'Wed Dec 31 18:00:00 1969' In [12]: a=range(30) In [13]: a Out[13]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29] In [14]: a Out[14]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29] In [15]: print a [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29] In [16]: import pprint In [17]: pprint.pprint(a) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29] In [18]: In [19]: from pprint import pprint In [20]: import urllib2 In [21]: fin=urllib2.urlopen("http://www.google.com") In [22]: for i in fin: ....: print i ....: ....: Google



 

Advanced searchLanguage tools

© 2012 - Privacy

In [23]: fin=urllib2.urlopen("http://www.google.com") KeyboardInterrupt In [23]: Do you really want to exit ([y]/n)? odd-2% ls mygrep.py mygrep_outline.py x.py odd-2% ls mygrep.py mygrep_outline.py x.py odd-2% cd .. odd-2% ls Extra_5.pdf Lecture1.key Lecture4.key grades.numbers Homework2.pdf Lecture2.key Lecture4.pdf lec3 Homework3.pdf Lecture2.pdf Lecture5.key lec4 Homework4.pdf Lecture3.key Lecture5.pdf lec5 Homework_5.pdf Lecture3.pdf day1handout.pages odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: import os In [2]: os.listdir(".") Out[2]: ['.DS_Store', 'day1handout.pages', 'Extra_5.pdf', 'grades.numbers', 'Homework2.pdf', 'Homework3.pdf', 'Homework4.pdf', 'Homework_5.pdf', 'lec3', 'lec4', 'lec5', 'Lecture1.key', 'Lecture2.key', 'Lecture2.pdf', 'Lecture3.key', 'Lecture3.pdf', 'Lecture4.key', 'Lecture4.pdf', 'Lecture5.key', 'Lecture5.pdf'] In [3]: os.stat("Homework2.pdf") Out[3]: posix.stat_result(st_mode=33188, st_ino=5344135, st_dev=234881026L, st_nlink=1, st_uid=501, st_gid=501, st_size=248524, st_atime=1326206290, st_mtime=1326084222, st_ctime=1326206290) In [4]: os.system("ls") Extra_5.pdf Lecture1.key Lecture4.key grades.numbers Homework2.pdf Lecture2.key Lecture4.pdf lec3 Homework3.pdf Lecture2.pdf Lecture5.key lec4 Homework4.pdf Lecture3.key Lecture5.pdf lec5 Homework_5.pdf Lecture3.pdf day1handout.pages Out[4]: 0 In [5]: def f(x,y): ...: "This returns x*y" ...: return x*y ...: In [6]: f(3,5) Out[6]: 15 In [7]: help(f) In [8]: def g(a,b): ...: for i in a: i*=b ...: return ...: In [9]: a=[1,2,3,4,5] In [10]: g(a,4) In [11]: a Out[11]: [1, 2, 3, 4, 5] In [12]: def g(a,b): ....: for i in range(len(a)): ....: a[i]*=b ....: ....: In [13]: g(a) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /Users/stevel/wp/lecture/2012_01_Intro_Programming/ in () TypeError: g() takes exactly 2 arguments (1 given) In [14]: g(a,5) In [15]: a Out[15]: [5, 10, 15, 20, 25] In [16]: Do you really want to exit ([y]/n)? odd-2% ls Extra_5.pdf Lecture1.key Lecture4.key grades.numbers Homework2.pdf Lecture2.key Lecture4.pdf lec3 Homework3.pdf Lecture2.pdf Lecture5.key lec4 Homework4.pdf Lecture3.key Lecture5.pdf lec5 Homework_5.pdf Lecture3.pdf day1handout.pages odd-2% cd lec5 odd-2% ls mygrep.py mygrep_outline.py x.py odd-2% vi person.py odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: from person import person ------------------------------------------------------------ File "person.py", line 3 print "%s %s\n%s"(self.firstname,self.lastname,self.address") ^ SyntaxError: EOL while scanning string literal In [2]: Do you really want to exit ([y]/n)? odd-2% !vi vi person.py odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: from person import person --------------------------------------------------------------------------- ImportError Traceback (most recent call last) /Users/stevel/wp/lecture/2012_01_Intro_Programming/lec5/ in () ImportError: cannot import name person In [2]: Do you really want to exit ([y]/n)? odd-2% vi person.py odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: from person import Person In [2]: Person Out[2]: In [3]: a=Person() In [4]: a Out[4]: In [5]: a.firstname="steve" In [6]: a.lastname="ludtke" In [7]: a.address="1 Baylor Plz" In [8]: a. a.__class__ a.__module__ a.firstname a.lastname a.show a.__doc__ a.address a.fixcase a.set_name In [8]: a.show() steve ludtke 1 Baylor Plz In [9]: b=Person() In [10]: b.firstname="George" In [11]: b.lastname="Brown" In [12]: b.address="nowhere" In [13]: b.show() George Brown nowhere In [14]: a.fixcase() In [15]: a.show() Steve Ludtke 1 Baylor Plz In [16]: a.set_name("Stephen","Ludtke ------------------------------------------------------------ File "", line 1 a.set_name("Stephen","Ludtke ^ SyntaxError: EOL while scanning string literal In [17]: a.set_name("Stephen","Ludtke") In [18]: a.show() Stephen Ludtke 1 Baylor Plz In [19]: show --------------------------------------------------------------------------- NameError Traceback (most recent call last) /Users/stevel/wp/lecture/2012_01_Intro_Programming/lec5/ in () NameError: name 'show' is not defined In [20]: Person.show Out[20]: In [21]: "a".join(["1","2","abc"]) Out[21]: '1a2aabc' In [22]: print a In [23]: Do you really want to exit ([y]/n)? odd-2% ls mygrep.py person.py x.py mygrep_outline.py person.pyc odd-2% vi person.py odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: from person import Person In [2]: a=Person() Initialize In [3]: print a.firstname None In [4]: a Out[4]: None None None --------------------------------------------------------------------------- TypeError Traceback (most recent call last) /Users/stevel/wp/lecture/2012_01_Intro_Programming/lec5/ in () /Library/Python/2.7/site-packages/IPython/Prompts.pyc in __call__(self, arg) 550 551 # and now call a possibly user-defined print mechanism --> 552 manipulated_val = self.display(arg) 553 554 # user display hooks can change the variable to be stored in /Library/Python/2.7/site-packages/IPython/Prompts.pyc in _display(self, arg) 576 return IPython.generics.result_display(arg) 577 except TryNext: --> 578 return self.shell.hooks.result_display(arg) 579 580 # Assign the default display method: /Library/Python/2.7/site-packages/IPython/hooks.pyc in __call__(self, *args, **kw) 139 #print "prio",prio,"cmd",cmd #dbg 140 try: --> 141 ret = cmd(*args, **kw) 142 return ret 143 except ipapi.TryNext, exc: /Library/Python/2.7/site-packages/IPython/hooks.pyc in result_display(self, arg) 169 170 if self.rc.pprint: --> 171 out = pformat(arg) 172 if '\n' in out: 173 # So that multi-line strings line up with the left column of /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pprint.pyc in pformat(self, object) 117 def pformat(self, object): 118 sio = _StringIO() --> 119 self._format(object, sio, 0, 0, {}, 0) 120 return sio.getvalue() 121 /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pprint.pyc in _format(self, object, stream, indent, allowance, context, level) 135 self._readable = False 136 return --> 137 rep = self._repr(object, context, level - 1) 138 typ = _type(object) 139 sepLines = _len(rep) > (self._width - 1 - indent - allowance) /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pprint.pyc in _repr(self, object, context, level) 228 def _repr(self, object, context, level): 229 repr, readable, recursive = self.format(object, context.copy(), --> 230 self._depth, level) 231 if not readable: 232 self._readable = False /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pprint.pyc in format(self, object, context, maxlevels, level) 240 and whether the object represents a recursive construct. 241 """ --> 242 return _safe_repr(object, context, maxlevels, level) 243 244 /System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pprint.pyc in _safe_repr(object, context, maxlevels, level) 325 return format % _commajoin(components), readable, recursive 326 --> 327 rep = repr(object) 328 return rep, (rep and not rep.startswith('<')), False 329 TypeError: __repr__ returned non-string (type NoneType) In [5]: Do you really want to exit ([y]/n)? odd-2% !vi vi person.py odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: from person import Person In [2]: a=Person() Initialize In [3]: a Out[3]: None None None In [4]: a.firstname="steve" In [5]: a Out[5]: steve None None In [6]: a.show() steve None None In [7]: Do you really want to exit ([y]/n)? odd-2% odd-2% ls mygrep.py person.py x.py mygrep_outline.py person.pyc odd-2% vi x.py odd-2% python x.py 25 odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: import x 25 In [2]: Do you really want to exit ([y]/n)? odd-2% python x.py 25 odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: from x import f 25 In [2]: Do you really want to exit ([y]/n)? odd-2% ls mygrep.py person.py x.py mygrep_outline.py person.pyc x.pyc odd-2% vi x.py odd-2% python x.py 25 odd-2% ipython Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) Type "copyright", "credits" or "license" for more information. IPython 0.10.2 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object'. ?object also works, ?? prints more. In [1]: import x In [2]: Do you really want to exit ([y]/n)? odd-2% ls mygrep.py person.py x.py mygrep_outline.py person.pyc x.pyc odd-2% cd .. odd-2% ls Extra_5.pdf Lecture1.key Lecture4.key grades.numbers Homework2.pdf Lecture2.key Lecture4.pdf lec3 Homework3.pdf Lecture2.pdf Lecture5.key lec4 Homework4.pdf Lecture3.key Lecture5.pdf lec5 Homework_5.pdf Lecture3.pdf day1handout.pages odd-2% cd lec4 odd-2% ls arg_demo.py scrabble_enum.py words.scrabble scrabble.py scrabble_recur.py x.py scrabble2.py test.txt x.pyc odd-2% vi scrabble_enum.py odd-2% vi scrabble_recur.py odd-2% vi scrabble_enum.py odd-2% ls arg_demo.py scrabble_enum.py words.scrabble scrabble.py scrabble_recur.py x.py scrabble2.py test.txt x.pyc odd-2% more words.scrabble aa aah aahed aahing aahs aal aalii aaliis aals aardvark aardvarks aardwolf aardwolves aargh aarrgh aarrghh aarti aartis aas aasvogel aasvogels ab aba abac abaca abacas abaci aback abacs abacterial abactinal abactinally abactor abactors abacus abacuses abaft abaka abakas abalone abalones abamp abampere abamperes abamps aband abanded abanding abandon abandoned abandonedly abandonee abandonees abandoner abandoners abandoning abandonment abandonments abandons abandonware abandonwares abands abapical abas abase abased abasedly abasement abasements abaser abasers abases abash abashed abashedly abashes abashing abashless abashment abashments abasia abasias abasing abask abatable abate abated abatement abatements abater abaters abates abating abatis abatises abator abators abattis abattises abattoir abattoirs abattu abature abatures abaxial abaxile abaya abayas abb abba abbacies abbacy abbas abbatial abbe abbed abbes abbess abbesses abbey abbeys abbot abbotcies abbotcy abbots abbotship abbotships abbreviate abbreviated abbreviates abbreviating abbreviation abbreviations abbreviator abbreviators abbreviatory abbreviature abbreviatures abbs abcee abcees abcoulomb abcoulombs abdabs abdicable abdicant abdicate abdicated abdicates abdicating abdication abdications abdicative abdicator abdicators abdomen abdomens abdomina abdominal abdominally abdominals abdominoplasty abdominous abduce abduced abducens abducent abducentes abduces abducing abduct abducted abductee abductees abducting abduction abductions abductor abductores abductors abducts abeam abear abearing abears abecedarian abecedarians abed abegging abeigh abele abeles abelia abelian abelias abelmosk abelmosks aberdevine aberdevines abernethies abernethy aberrance aberrances aberrancies aberrancy aberrant aberrantly aberrants aberrate aberrated aberrates aberrating aberration aberrational aberrations abessive abessives abet abetment abetments abets abettal abettals abetted abetter abetters abetting abettor abettors abeyance abeyances abeyancies abeyancy abeyant abfarad abfarads abhenries abhenry abhenrys abhominable abhor abhorred abhorrence abhorrences abhorrencies abhorrency abhorrent abhorrently abhorrer abhorrers abhorring abhorrings abhors abid abidance abidances abidden abide abided abider abiders abides abiding abidingly abidings abies abietic abigail abigails abilities ability abiogeneses abiogenesis abiogenetic abiogenetically abiogenic abiogenically abiogenist abiogenists abiological abioses abiosis abiotic abiotically abiotrophic abiotrophies abiotrophy abirritant abirritants abirritate abirritated abirritates abirritating abiturient abiturients abject abjected abjecting abjection abjections abjectly abjectness abjectnesses abjects abjoint abjointed abjointing abjoints abjunction abjunctions abjuration abjurations abjure abjured abjurer abjurers abjures abjuring ablactation ablactations ablate ablated ablates ablating ablation ablations ablatitious ablatival ablative ablatively ablatives ablator ablators ablaut ablauts ablaze able abled ablegate ablegates ableism ableisms ableist ableists abler ables ablest ablet ablets abling ablings ablins abloom ablow abluent abluents ablush abluted ablution ablutionary ablutions ablutomane ablutomanes ably abmho abmhos abnegate abnegated abnegates abnegating abnegation abnegations abnegator abnegators abnormal abnormalism abnormalisms abnormalities abnormality abnormally abnormals abnormities abnormity abnormous abo aboard abode aboded abodement abodements abodes aboding abohm abohms aboideau aboideaus aboideaux aboil aboiteau aboiteaus aboiteaux abolish abolishable abolished abolisher abolishers abolishes abolishing abolishment abolishments abolition abolitional abolitionary abolitionism abolitionisms abolitionist abolitionists abolitions abolla abollae abollas aboma abomas abomasa abomasal abomasi abomasum abomasus abomasuses abominable abominableness abominably abominate abominated abominates abominating abomination abominations abominator abominators abondance abondances abonnement abonnements aboon aboral aborally abord aborded abording abords abore aborigen aborigens aborigin aboriginal aboriginalism aboriginalisms aboriginalities aboriginality aboriginally aboriginals aborigine aborigines aborigins aborne aborning abort aborted abortee abortees aborter aborters aborticide aborticides abortifacient abortifacients aborting abortion abortional abortionist abortionists abortions abortive abortively abortiveness abortivenesses aborts abortuaries abortuary abortus abortuses abos abought aboulia aboulias aboulic abound abounded abounding abounds about abouts above aboveboard aboveground aboves abracadabra abracadabras abrachia abrachias abradable abradant abradants abrade abraded abrader abraders abrades abrading abraid abraided abraiding abraids abram abranchial abranchiate abrasax abrasaxes abrasion abrasions abrasive abrasively abrasiveness abrasivenesses abrasives abraxas abraxases abray abrayed abraying abrays abrazo abrazos abreact abreacted abreacting abreaction abreactions abreactive abreacts abreast abrege abreges abri abricock abricocks abridgable abridge abridgeable abridged abridgement abridgements abridger abridgers abridges abridging abridgment abridgments abrim abrin abrins abris abroach abroad abroads abrogable abrogate abrogated abrogates abrogating abrogation abrogations abrogative abrogator abrogators abrooke abrooked abrookes abrooking abrosia abrosias abrupt abrupter abruptest abruption abruptions abruptly abruptness abruptnesses abrupts abs abscess abscessed abscesses abscessing abscind abscinded abscinding abscinds abscise abscised abscises abscisin abscising abscisins absciss abscissa abscissae abscissas abscisse abscisses abscissin abscissins abscission abscissions abscond absconded abscondence abscondences absconder absconders absconding absconds abseil abseiled abseiling abseilings abseils absence absences absent absented absentee absenteeism absenteeisms absentees absenter absenters absenting absently absentminded absentmindedly absents absey abseys absinth absinthe absinthes absinthiated absinthism absinthisms absinths absit absits absolute absolutely absoluteness absolutenesses absoluter absolutes absolutest absolution absolutions absolutise absolutised absolutises absolutising absolutism absolutisms absolutist absolutistic absolutists absolutive absolutize absolutized absolutizes absolutizing absolutory absolvable absolve absolved absolvent absolvents absolver absolvers absolves absolving absolvitor absolvitors absonant absorb absorbabilities absorbability absorbable absorbance absorbances absorbancies absorbancy absorbant absorbants absorbate absorbates absorbed absorbedly absorbefacient absorbefacients absorbencies absorbency absorbent absorbents absorber absorbers absorbing absorbingly absorbs absorptance absorptances absorptiometer absorptiometers absorption absorptions absorptive absorptiveness absorptivities absorptivity absquatulate absquatulated absquatulates absquatulating abstain abstained abstainer abstainers abstaining abstains abstemious abstemiously abstemiousness abstention abstentionism abstentionisms abstentionist abstentionists abstentions abstentious absterge absterged abstergent abstergents absterges absterging abstersion abstersions abstersive abstersives abstinence abstinences abstinencies abstinency abstinent abstinently abstract abstractable abstracted abstractedly abstractedness abstracter abstracters abstractest abstracting abstraction abstractional abstractionism abstractionisms abstractionist abstractionists abstractions abstractive abstractively abstractives abstractly abstractness abstractnesses abstractor abstractors abstracts abstrict abstricted abstricting abstriction abstrictions abstricts abstruse abstrusely abstruseness abstrusenesses abstruser abstrusest abstrusities abstrusity absurd absurder absurdest absurdism absurdisms absurdist absurdists absurdities absurdity absurdly absurdness absurdnesses absurds abthane abthanes abubble abuilding odd-2% ls arg_demo.py scrabble_enum.py words.scrabble scrabble.py scrabble_recur.py x.py scrabble2.py test.txt x.pyc odd-2%