Last login: Fri Jan 30 08:31:05 on ttys000 odd% cd odd% cd wp/lecture/2015_01_Intro_Programming/lecture7 odd% ls pubmed.py test.txt x.py odd% vi pubmed.py odd% python pubmed.py File "pubmed.py", line 26 SyntaxError: Non-ASCII character '\xe2' in file pubmed.py on line 26, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details odd% !vi vi pubmed.py odd% python pubmed.py Enter author name: LUDTKE SJ Traceback (most recent call last): File "pubmed.py", line 10, in handle = Entrez.esearch(db="pubmed", term="{}[Author]".format(author), retmax=500) File "/Library/Python/2.7/site-packages/biopython-1.63-py2.7-macosx-10.9-intel.egg/Bio/Entrez/__init__.py", line 185, in esearch return _open(cgi, variables) File "/Library/Python/2.7/site-packages/biopython-1.63-py2.7-macosx-10.9-intel.egg/Bio/Entrez/__init__.py", line 463, in _open handle = _urlopen(cgi) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 127, in urlopen return _opener.open(url, data, timeout) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 404, in open response = self._open(req, data) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 422, in _open '_open', req) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 382, in _call_chain result = func(*args) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 1214, in http_open return self.do_open(httplib.HTTPConnection, req) File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/urllib2.py", line 1184, in do_open raise URLError(err) urllib2.URLError: odd% python pubmed.py Enter author name: ludtke sj /Library/Python/2.7/site-packages/biopython-1.63-py2.7-macosx-10.9-intel.egg/Bio/Entrez/Parser.py:525: UserWarning: Unable to load DTD file esearch.dtd. Bio.Entrez uses NCBI's DTD files to parse XML files returned by NCBI Entrez. Though most of NCBI's DTD files are included in the Biopython distribution, sometimes you may find that a particular DTD file is missing. While we can access the DTD file through the internet, the parser is much faster if the required DTD files are available locally. For this purpose, please download esearch.dtd from http://eutils.ncbi.nlm.nih.gov/eutils/dtd/20060628/esearch.dtd and save it either in directory /Library/Python/2.7/site-packages/biopython-1.63-py2.7-macosx-10.9-intel.egg/Bio/Entrez/DTDs or in directory /Users/stevel/.biopython/Bio/Entrez/DTDs in order for Bio.Entrez to find it. Alternatively, you can save esearch.dtd in the directory Bio/Entrez/DTDs in the Biopython distribution, and reinstall Biopython. Please also inform the Biopython developers about this missing DTD, by reporting a bug on https://github.com/biopython/biopython/issues or sign up to our mailing list and emailing us, so that we can include it with the next release of Biopython. Proceeding to access the DTD file through the internet... warnings.warn(message) Traceback (most recent call last): File "pubmed.py", line 26, in coauthlast.update(r["AU"].split()[0]) AttributeError: 'list' object has no attribute 'split' odd% !vi vi pubmed.py odd% python pubmed.py Enter author name: ludtke sj /Library/Python/2.7/site-packages/biopython-1.63-py2.7-macosx-10.9-intel.egg/Bio/Entrez/Parser.py:525: UserWarning: Unable to load DTD file esearch.dtd. Bio.Entrez uses NCBI's DTD files to parse XML files returned by NCBI Entrez. Though most of NCBI's DTD files are included in the Biopython distribution, sometimes you may find that a particular DTD file is missing. While we can access the DTD file through the internet, the parser is much faster if the required DTD files are available locally. For this purpose, please download esearch.dtd from http://eutils.ncbi.nlm.nih.gov/eutils/dtd/20060628/esearch.dtd and save it either in directory /Library/Python/2.7/site-packages/biopython-1.63-py2.7-macosx-10.9-intel.egg/Bio/Entrez/DTDs or in directory /Users/stevel/.biopython/Bio/Entrez/DTDs in order for Bio.Entrez to find it. Alternatively, you can save esearch.dtd in the directory Bio/Entrez/DTDs in the Biopython distribution, and reinstall Biopython. Please also inform the Biopython developers about this missing DTD, by reporting a bug on https://github.com/biopython/biopython/issues or sign up to our mailing list and emailing us, so that we can include it with the next release of Biopython. Proceeding to access the DTD file through the internet... warnings.warn(message) ['Dai W', 'Fu C', 'Khant HA', 'Ludtke SJ', 'Schmid MF', 'Chiu W'] Traceback (most recent call last): File "pubmed.py", line 27, in coauthlast.update(r["AU"].split()[0]) AttributeError: 'list' object has no attribute 'split' odd% python Python 2.7.6 (default, Sep 9 2014, 15:04:36) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> a={} >>> a=dict() >>> a {} >>> auth={} >>> a="test" >>> auth[a]+=1 Traceback (most recent call last): File "", line 1, in KeyError: 'test' >>> try: auth[a]+=1 ... except: auth[a]=1 ... >>> auth {'test': 1} >>> try: auth[a]+=1 ... except: auth[a]=1 ... >>> auth {'test': 2} >>> auth["alpha"]=10 >>> auth["beta"]=1 >>> auth {'test': 2, 'alpha': 10, 'beta': 1} >>> print auth {'test': 2, 'alpha': 10, 'beta': 1} >>> authl=list(auth) >>> authl ['test', 'alpha', 'beta'] >>> authl=auth.items() >>> authl [('test', 2), ('alpha', 10), ('beta', 1)] >>> authl.sort() >>> authl [('alpha', 10), ('beta', 1), ('test', 2)] >>> authl2=[(a[1],a[0]) for a in authl] >>> authl2 [(10, 'alpha'), (1, 'beta'), (2, 'test')] >>> authl2.sort() >>> authl2 [(1, 'beta'), (2, 'test'), (10, 'alpha')] >>> authl2.reverse() >>> authl2 [(10, 'alpha'), (2, 'test'), (1, 'beta')] >>> authl2.sort(reversed=True) Traceback (most recent call last): File "", line 1, in TypeError: 'reversed' is an invalid keyword argument for this function >>> authl2.sort(reverse=True) >>> authl [('alpha', 10), ('beta', 1), ('test', 2)] >>> def f(x,y): return x[1]-y[1] ... >>> authl.sort(f) >>> authl [('beta', 1), ('test', 2), ('alpha', 10)] >>> def f(x,y): return y[1]-x[1] ... >>> authl.sort(f) >>> authl [('alpha', 10), ('test', 2), ('beta', 1)] >>> def f(x,y): ... print x ... print y ... print "----" ... return y[1]-x[1] ... >>> authl.sort(f) ('test', 2) ('alpha', 10) ---- ('beta', 1) ('test', 2) ---- >>> a={1,2,5,7} >>> a set([1, 2, 5, 7]) >>> a[0] Traceback (most recent call last): File "", line 1, in TypeError: 'set' object does not support indexing >>> for i in a: ... print i ... 1 2 5 7 >>> odd% odd% vi x.py odd% python x.py 2 3 4 5 6 7 8 9 10 2 4 8 16 32 64 128 256 512 1024 3 9 27 81 243 729 2187 6561 19683 59049 4 16 64 256 1024 4096 16384 65536 2.6214e+05 1.0486e+06 5 25 125 625 3125 15625 78125 3.9062e+05 1.9531e+06 9.7656e+06 6 36 216 1296 7776 46656 2.7994e+05 1.6796e+06 1.0078e+07 6.0466e+07 7 49 343 2401 16807 1.1765e+05 8.2354e+05 5.7648e+06 4.0354e+07 2.8248e+08 8 64 512 4096 32768 2.6214e+05 2.0972e+06 1.6777e+07 1.3422e+08 1.0737e+09 9 81 729 6561 59049 5.3144e+05 4.783e+06 4.3047e+07 3.8742e+08 3.4868e+09 10 100 1000 10000 1e+05 1e+06 1e+07 1e+08 1e+09 1e+10 odd% ls pubmed.py test.txt x.py odd% cat test.txt 0.0 1.0 0.327194696796 0.944956946315 0.61836980307 0.785887260777 0.841470984808 0.540302305868 0.971937901363 0.235237573303 0.995407957752 -0.0957235480144 0.909297426826 -0.416146836547 0.723085881738 -0.69075813975 0.457272626636 -0.889326568213 0.14112000806 -0.9899924966 -0.190567962875 -0.981674004711 -0.501277048588 -0.865286842936 -0.756802495308 -0.653643620864 -0.929014501271 -0.370043316963 -0.998954917098 -0.0457063847386 -0.958924274663 0.283662185463 -0.813329391568 0.581803489859 -0.578198241744 0.815896312802 -0.279415498199 0.96017028665 0.0501270098822 0.998742851229 odd% ipython Python 2.7.6 (default, Sep 9 2014, 15:04:36) Type "copyright", "credits" or "license" for more information. IPython 2.0.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: lines=file("test.txt","r").readlines() In [2]: linex --------------------------------------------------------------------------- NameError Traceback (most recent call last) in () ----> 1 linex NameError: name 'linex' is not defined In [3]: lines Out[3]: ['0.0 1.0\n', '0.327194696796 0.944956946315\n', '0.61836980307 0.785887260777\n', '0.841470984808 0.540302305868\n', '0.971937901363 0.235237573303\n', '0.995407957752 -0.0957235480144\n', '0.909297426826 -0.416146836547\n', '0.723085881738 -0.69075813975\n', '0.457272626636 -0.889326568213\n', '0.14112000806 -0.9899924966\n', '-0.190567962875 -0.981674004711\n', '-0.501277048588 -0.865286842936\n', '-0.756802495308 -0.653643620864\n', '-0.929014501271 -0.370043316963\n', '-0.998954917098 -0.0457063847386\n', '-0.958924274663 0.283662185463\n', '-0.813329391568 0.581803489859\n', '-0.578198241744 0.815896312802\n', '-0.279415498199 0.96017028665\n', '0.0501270098822 0.998742851229\n'] In [4]: "123 Display all 320 possibilities? (y or n) %%! %save chr %%HTML %sc class %%SVG %store classmethod %%bash %sx cmp %%capture %system coerce %%debug %tb compile %%file %time complex %%html %timeit continue %%javascript %unalias copyright %%latex %unload_ext credits %%perl %who def %%prun %who_ls del %%pypy %whos delattr %%python %xdel dict %%python2 %xmode dir %%python3 ArithmeticError divmod %%ruby AssertionError dreload %%script AttributeError elif %%sh BaseException else %%svg BufferError enumerate %%sx BytesWarning eval %%system DeprecationWarning except %%time EOFError exec %%timeit Ellipsis execfile %%writefile EnvironmentError exit %alias Exception file %alias_magic False filter %autocall FloatingPointError finally %autoindent FutureWarning float %automagic GeneratorExit for %bookmark IOError format %cat ImportError from %cd ImportWarning frozenset %clear In get_ipython %colors IndentationError getattr %config IndexError global %cp KeyError globals %cpaste KeyboardInterrupt hasattr %debug LookupError hash %dhist MemoryError help %dirs NameError hex %doctest_mode None id %ed NotImplemented if %edit NotImplementedError import %env OSError in %gui Out input %hist OverflowError int %history PendingDeprecationWarning intern %install_default_config ReferenceError is %install_ext RuntimeError isinstance %install_profiles RuntimeWarning issubclass %killbgscripts StandardError iter %ldir StopIteration lambda %less SyntaxError len %lf SyntaxWarning license %lk SystemError lines %ll SystemExit list %load TabError locals %load_ext True long %loadpy TypeError map %logoff UnboundLocalError max %logon UnicodeDecodeError memoryview %logstart UnicodeEncodeError min %logstate UnicodeError next %logstop UnicodeTranslateError not %ls UnicodeWarning object %lsmagic UserWarning oct %lx ValueError open %macro Warning or %magic ZeroDivisionError ord %man _ pass %matplotlib _3 pow %mkdir __ print %more __IPYTHON__ property %mv __IPYTHON__active pubmed.py %notebook ___ quit %page __builtin__ raise %paste __debug__ range %pastebin __doc__ raw_input %pdb __import__ reduce %pdef __name__ reload %pdoc __package__ repr %pfile _dh return %pinfo _i reversed %pinfo2 _i1 round %popd _i2 set %pprint _i3 setattr %precision _ih slice %profile _ii sorted %prun _iii staticmethod %psearch _oh str %psource _sh sum %pushd abs super %pwd all test.txt %pycat and try %pylab any tuple %quickref apply type %recall as unichr %rehashx assert unicode %reload_ext basestring vars %rep bin while %rerun bool with %reset break x.py %reset_selective buffer xrange %rm bytearray yield %rmdir bytes zip %run callable In [4]: "123 444".split() Out[4]: ['123', '444'] In [5]: lines=file("test.txt","r").read() In [6]: lines Out[6]: '0.0 1.0\n0.327194696796 0.944956946315\n0.61836980307 0.785887260777\n0.841470984808 0.540302305868\n0.971937901363 0.235237573303\n0.995407957752 -0.0957235480144\n0.909297426826 -0.416146836547\n0.723085881738 -0.69075813975\n0.457272626636 -0.889326568213\n0.14112000806 -0.9899924966\n-0.190567962875 -0.981674004711\n-0.501277048588 -0.865286842936\n-0.756802495308 -0.653643620864\n-0.929014501271 -0.370043316963\n-0.998954917098 -0.0457063847386\n-0.958924274663 0.283662185463\n-0.813329391568 0.581803489859\n-0.578198241744 0.815896312802\n-0.279415498199 0.96017028665\n0.0501270098822 0.998742851229\n' In [7]: lines.split() Out[7]: ['0.0', '1.0', '0.327194696796', '0.944956946315', '0.61836980307', '0.785887260777', '0.841470984808', '0.540302305868', '0.971937901363', '0.235237573303', '0.995407957752', '-0.0957235480144', '0.909297426826', '-0.416146836547', '0.723085881738', '-0.69075813975', '0.457272626636', '-0.889326568213', '0.14112000806', '-0.9899924966', '-0.190567962875', '-0.981674004711', '-0.501277048588', '-0.865286842936', '-0.756802495308', '-0.653643620864', '-0.929014501271', '-0.370043316963', '-0.998954917098', '-0.0457063847386', '-0.958924274663', '0.283662185463', '-0.813329391568', '0.581803489859', '-0.578198241744', '0.815896312802', '-0.279415498199', '0.96017028665', '0.0501270098822', '0.998742851229'] In [8]: In [8]: Do you really want to exit ([y]/n)? odd% ipython Python 2.7.6 (default, Sep 9 2014, 15:04:36) Type "copyright", "credits" or "license" for more information. IPython 2.0.0 -- An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about 'object', use 'object??' for extra details. In [1]: lines=file("test.txt","r").readlines() In [2]: values=[] In [3]: for l in lines: ...: v=l.split() ...: values.append((float(v[0]),float(v[1]))) ...: In [4]: values Out[4]: [(0.0, 1.0), (0.327194696796, 0.944956946315), (0.61836980307, 0.785887260777), (0.841470984808, 0.540302305868), (0.971937901363, 0.235237573303), (0.995407957752, -0.0957235480144), (0.909297426826, -0.416146836547), (0.723085881738, -0.69075813975), (0.457272626636, -0.889326568213), (0.14112000806, -0.9899924966), (-0.190567962875, -0.981674004711), (-0.501277048588, -0.865286842936), (-0.756802495308, -0.653643620864), (-0.929014501271, -0.370043316963), (-0.998954917098, -0.0457063847386), (-0.958924274663, 0.283662185463), (-0.813329391568, 0.581803489859), (-0.578198241744, 0.815896312802), (-0.279415498199, 0.96017028665), (0.0501270098822, 0.998742851229)] In [5]: values[5] Out[5]: (0.995407957752, -0.0957235480144) In [6]: for v in values: print v (0.0, 1.0) (0.327194696796, 0.944956946315) (0.61836980307, 0.785887260777) (0.841470984808, 0.540302305868) (0.971937901363, 0.235237573303) (0.995407957752, -0.0957235480144) (0.909297426826, -0.416146836547) (0.723085881738, -0.69075813975) (0.457272626636, -0.889326568213) (0.14112000806, -0.9899924966) (-0.190567962875, -0.981674004711) (-0.501277048588, -0.865286842936) (-0.756802495308, -0.653643620864) (-0.929014501271, -0.370043316963) (-0.998954917098, -0.0457063847386) (-0.958924274663, 0.283662185463) (-0.813329391568, 0.581803489859) (-0.578198241744, 0.815896312802) (-0.279415498199, 0.96017028665) (0.0501270098822, 0.998742851229) In [7]: for x,y in values: print x 0.0 0.327194696796 0.61836980307 0.841470984808 0.971937901363 0.995407957752 0.909297426826 0.723085881738 0.457272626636 0.14112000806 -0.190567962875 -0.501277048588 -0.756802495308 -0.929014501271 -0.998954917098 -0.958924274663 -0.813329391568 -0.578198241744 -0.279415498199 0.0501270098822 In [8]: for x,y in values: print y 1.0 0.944956946315 0.785887260777 0.540302305868 0.235237573303 -0.0957235480144 -0.416146836547 -0.69075813975 -0.889326568213 -0.9899924966 -0.981674004711 -0.865286842936 -0.653643620864 -0.370043316963 -0.0457063847386 0.283662185463 0.581803489859 0.815896312802 0.96017028665 0.998742851229 In [9]: for x,y,z in values: print y --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in () ----> 1 for x,y,z in values: print y ValueError: need more than 2 values to unpack In [10]: q=[(1,2),(1,3),(1,4)] In [11]: q Out[11]: [(1, 2), (1, 3), (1, 4)] In [12]: zip(*q) Out[12]: [(1, 1, 1), (2, 3, 4)] In [13]: zip([(1,2,3),(1,3,5),(1,4,7),(2,5,8)]) Out[13]: [((1, 2, 3),), ((1, 3, 5),), ((1, 4, 7),), ((2, 5, 8),)] In [14]: zip((1,2,3),(1,3,5),(1,4,7),(2,5,8)) Out[14]: [(1, 1, 1, 2), (2, 3, 4, 5), (3, 5, 7, 8)] In [15]: a=10000.0 In [16]: b=0 In [17]: for i in xrange(10000): b+=1 In [18]: a==b Out[18]: True In [19]: b Out[19]: 10000 In [20]: a=10000.0 In [21]: b=0 In [22]: for i in xrange(80000): b+=0.125 In [23]: a==b Out[23]: True In [24]: b Out[24]: 10000.0 In [25]: a=10000.0 In [26]: b=0 In [27]: for i in xrange(100000): b+=0.1 In [28]: a==b Out[28]: False In [29]: a Out[29]: 10000.0 In [30]: b Out[30]: 10000.000000018848 In [31]: from decimal import Decimal In [32]: Decimal(10.1) Out[32]: Decimal('10.0999999999999996447286321199499070644378662109375') In [33]: Decimal("10.1") Out[33]: Decimal('10.1') In [34]: from fractions import Fraction In [35]: Fraction(3,5) Out[35]: Fraction(3, 5) In [36]: Fraction(3,5)*Fraction(10,2) Out[36]: Fraction(3, 1) In [37]: Fraction(Decimal("10.1")) Out[37]: Fraction(101, 10) In [38]: Fraction(10.1) Out[38]: Fraction(5685794529555251, 562949953421312) In [39]: help(Fraction) In [40]: from math import * In [41]: In [41]: x=[i/1000000.0 for i in xrange(10000000)] In [42]: y=[sin(i) for i in x] In [43]: len(x) Out[43]: 10000000 In [44]: from numpy import * In [45]: In [45]: x=arange(0,10.0,0.000001) In [46]: y=sin(x) In [47]: len(x) Out[47]: 10000000 In [48]: type(x_ ....: KeyboardInterrupt In [48]: type(x) Out[48]: numpy.ndarray In [49]: array Out[49]: In [50]: a=arange(60) In [51]: a Out[51]: array([ 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, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]) In [52]: arange(0,1,.1) Out[52]: array([ 0. , 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]) In [53]: a=arange(60) In [54]: a Out[54]: array([ 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, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]) In [55]: a.reshape(6,10) Out[55]: array([[ 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], [30, 31, 32, 33, 34, 35, 36, 37, 38, 39], [40, 41, 42, 43, 44, 45, 46, 47, 48, 49], [50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]) In [56]: a.reshape(10,6) Out[56]: array([[ 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], [30, 31, 32, 33, 34, 35], [36, 37, 38, 39, 40, 41], [42, 43, 44, 45, 46, 47], [48, 49, 50, 51, 52, 53], [54, 55, 56, 57, 58, 59]]) In [57]: a.reshape(10,8) --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in () ----> 1 a.reshape(10,8) ValueError: total size of new array must be unchanged In [58]: a Out[58]: array([ 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, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59]) In [59]: b=a.reshape(6,10) In [60]: b Out[60]: array([[ 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], [30, 31, 32, 33, 34, 35, 36, 37, 38, 39], [40, 41, 42, 43, 44, 45, 46, 47, 48, 49], [50, 51, 52, 53, 54, 55, 56, 57, 58, 59]]) In [61]: b.shape Out[61]: (6, 10) In [62]: c=a.reshape(6,5,2) In [63]: c Out[63]: array([[[ 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]], [[30, 31], [32, 33], [34, 35], [36, 37], [38, 39]], [[40, 41], [42, 43], [44, 45], [46, 47], [48, 49]], [[50, 51], [52, 53], [54, 55], [56, 57], [58, 59]]]) In [64]: a.size Out[64]: 60 In [65]: b.size Out[65]: 60 In [66]: b.shape Out[66]: (6, 10) In [67]: c.shape Out[67]: (6, 5, 2) In [68]: c.ndim Out[68]: 3 In [69]: c.dtype Out[69]: dtype('int64') In [70]: a=arange(0,6.4,.1) In [71]: a Out[71]: array([ 0. , 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1. , 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2. , 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3. , 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4. , 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5. , 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6. , 6.1, 6.2, 6.3]) In [72]: a.dtype Out[72]: dtype('float64') In [73]: a Out[73]: array([ 0. , 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1. , 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2. , 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3. , 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4. , 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5. , 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6. , 6.1, 6.2, 6.3]) In [74]: a.dtype Out[74]: dtype('float64') In [75]: b=a.astype("float32") In [76]: b Out[76]: array([ 0. , 0.1 , 0.2 , 0.30000001, 0.40000001, 0.5 , 0.60000002, 0.69999999, 0.80000001, 0.89999998, 1. , 1.10000002, 1.20000005, 1.29999995, 1.39999998, 1.5 , 1.60000002, 1.70000005, 1.79999995, 1.89999998, 2. , 2.0999999 , 2.20000005, 2.29999995, 2.4000001 , 2.5 , 2.5999999 , 2.70000005, 2.79999995, 2.9000001 , 3. , 3.0999999 , 3.20000005, 3.29999995, 3.4000001 , 3.5 , 3.5999999 , 3.70000005, 3.79999995, 3.9000001 , 4. , 4.0999999 , 4.19999981, 4.30000019, 4.4000001 , 4.5 , 4.5999999 , 4.69999981, 4.80000019, 4.9000001 , 5. , 5.0999999 , 5.19999981, 5.30000019, 5.4000001 , 5.5 , 5.5999999 , 5.69999981, 5.80000019, 5.9000001 , 6. , 6.0999999 , 6.19999981, 6.30000019], dtype=float32) In [77]: b.dtype Out[77]: dtype('float32') In [78]: Do you really want to exit ([y]/n)? odd%