Python: Einführung in die Programmierung und mathematische Anwendungen
Gespeichert in:
1. Verfasser: | |
---|---|
Format: | Buch |
Sprache: | German |
Veröffentlicht: |
Wilburgstetten
Schlembach, J
2012
|
Schlagworte: | |
Online-Zugang: | Kurzbeschreibung Inhaltsverzeichnis |
Beschreibung: | VII, 264 S. Ill. 240 mm x 170 mm |
ISBN: | 9783935340731 |
Internformat
MARC
LEADER | 00000nam a2200000 c 4500 | ||
---|---|---|---|
001 | BV040737297 | ||
003 | DE-604 | ||
005 | 20130417 | ||
007 | t | ||
008 | 130208s2012 gw a||| |||| 00||| ger d | ||
015 | |a 12,N45 |2 dnb | ||
016 | 7 | |a 102734951X |2 DE-101 | |
020 | |a 9783935340731 |c Pb. : EUR 32.00 (DE) (freier Pr.), EUR 32.90 (AT) (freier Pr.), sfr 41.00 (freier Pr.) |9 978-3-935340-73-1 | ||
024 | 3 | |a 9783935340731 | |
035 | |a (OCoLC)828796421 | ||
035 | |a (DE-599)DNB102734951X | ||
040 | |a DE-604 |b ger |e rakddb | ||
041 | 0 | |a ger | |
044 | |a gw |c XA-DE-BY | ||
049 | |a DE-12 |a DE-29T |a DE-83 |a DE-91G |a DE-862 |a DE-M347 | ||
082 | 0 | |a 005.133 |2 22/ger | |
084 | |a ST 250 |0 (DE-625)143626: |2 rvk | ||
084 | |a 004 |2 sdnb | ||
084 | |a DAT 366f |2 stub | ||
100 | 1 | |a Woyand, Hans-Bernhard |d 1952- |e Verfasser |0 (DE-588)13562679X |4 aut | |
245 | 1 | 0 | |a Python |b Einführung in die Programmierung und mathematische Anwendungen |c Hans-Bernhard Woyand |
264 | 1 | |a Wilburgstetten |b Schlembach, J |c 2012 | |
300 | |a VII, 264 S. |b Ill. |c 240 mm x 170 mm | ||
336 | |b txt |2 rdacontent | ||
337 | |b n |2 rdamedia | ||
338 | |b nc |2 rdacarrier | ||
650 | 0 | 7 | |a Python |g Programmiersprache |0 (DE-588)4434275-5 |2 gnd |9 rswk-swf |
689 | 0 | 0 | |a Python |g Programmiersprache |0 (DE-588)4434275-5 |D s |
689 | 0 | |5 DE-604 | |
856 | 4 | 2 | |m X:MVB |q text/html |u http://www.schlembach-verlag.de/buecher.php?bnr=73 |3 Kurzbeschreibung |
856 | 4 | 2 | |m DNB Datenaustausch |q application/pdf |u http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=025717295&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |3 Inhaltsverzeichnis |
999 | |a oai:aleph.bib-bvb.de:BVB01-025717295 |
Datensatz im Suchindex
DE-BY-862_location | 2000 |
---|---|
DE-BY-FWS_call_number | 2000/ST 250 P99 W938 |
DE-BY-FWS_katkey | 494659 |
DE-BY-FWS_media_number | 083000509288 |
_version_ | 1806176587670880256 |
adam_text | IMAGE 1
INHALTSVERZEICHNIS
1 EINFUEHRUNG 1
1.1 DIE PROGRAMMIERSPRACHE PYTHON 1
1.2 HINWEISE ZUR INSTALLATION 2
1.3 ERSTE SCHRITTE - DER INTERPRETERMODUS VON PYTHON 3
1.3.1 ADDITION UND SUBTRAKTION 4
1.3.2 MULTIPLIKATION UND DIVISION 4
1.3.3 VERGLEICHSAUSDRUECKE 6
1.3.4 LOGISCHE AUSDRUECKE 7
1.3.5 MATHEMATISCHE FUNKTIONEN 7
1.3.6 GRUNDLEGENDES UEBER VARIABLEN UND ZUWEISUNGEN 8
1.3.7 ZEICHENKETTEN 10
1.3.8 TURTLE-GRAFIK 10
1.4 PYTHON-PROGRAMME MIT IDLE ERSTELLEN 12
AUFGABEN 18
LOESUNGEN 22
2 GRUNDLAGEN 31
2.1 EINFACHE OBJEKTTYPEN 31
2.1.1 GANZE ZAHLEN - INTEGER 31
2.1.2 GLEITPUNKTZAHLEN - FLOAT 32
2.1.3 KOMPLEXE ZAHLEN - COMPLEX 34
2.1.4 ZEICHENKETTEN - STRINGS 35
AUFGABEN 41
LOESUNGEN 42
2.2 OPERATOREN UND MATHEMATISCHE STANDARDFUNKTIONEN 45
2.2.1 OPERATOREN ZUR ARITHMETISCHEN BERECHNUNG 45
2.2.2 MATHEMATISCHE STANDARDFUNKTIONEN 46
AUFGABEN 49
LOESUNGEN 49
2.3 VARIABLEN UND ZUWEISUNGEN 50
2.4 FUNKTIONEN 55
2.4.1 FUNKTIONEN MIT RUECKGABEWERT 55
2.4.2 FUNKTIONEN OHNE RUECKGABEWERT 59
AUFGABEN 60
LOESUNGEN 62
2.5 EINGABE UND AUSGABE 64
2.6 PROGRAMMVERZWEIGUNGEN 67
2.6.1 EINFACHE IF-ANWEISUNGEN 67
2.6.2 ERWEITERTE IF-ANWEISUNG 68
AUFGABEN 70
LOESUNGEN 71
2.7 BEDINGUNGEN 72
HTTP://D-NB.INFO/102734951X
IMAGE 2
W INHALTSVERZEICHNIS
2.8 PROGRAMMSCHLEIFEN 73
2.8.1 FOR-SCHLEIFEN 73
2.8.2 WHILE-SCHLEIFEN 78
AUFGABEN 81
LOESUNGEN 81
3 VERTIEFUNG 85
3.1 LISTEN 85
AUFGABEN 90
LOESUNGEN 91
3.2 TUPLES 95
3.3 SETS 97
3.4 DICTIONARIES 98
AUFGABEN 102
LOESUNGEN 103
3.5 SLICING 105
3.6 LIST COMPREHENSIONS 108
3.7 ITERATOREN UND DIE ZIP-FUNKTION 109
3.8 FUNKTIONEN, MODULE UND REKURSION 111
3.8.1 SCHLUESSELWORT-PARAMETER 111
3.8.2 MODULE 112
3.8.3 REKURSION 114
3.8.4 GLOBALE UND LOKALE VARIABLEN 116
3.9 TURTLE-GRAFIK - VERBESSERT 117
3.10 DATEIEN LESEN UND SCHREIBEN 120
AUFGABEN 124
LOESUNGEN 129
4 OBJEKTORIENTIERTES PROGRAMMIEREN 141
4.1 KLASSEN UND OBJEKTE 141
4.2 KONSTRUKTOREN UND DESTRUKTOREN 149
4.3 UEBERLADEN VON OPERATOREN 152
4.4 VERERBUNG 156
AUFGABEN 159
LOESUNGEN 161
5 NUMERISCHE BERECHNUNGEN MIT NUMPY 173
5.1 HINWEISE ZUR INSTALLATION 173
5.2 ARRAYS 173
5.3 DARSTELLUNG VON MATRIZEN 175
5.4 SPEZIELLE FUNKTIONEN 175
5.5 OPERATIONEN 176
5.6 LINEARE ALGEBRA 178
5.7 ZUFALLSWERTE 179
AUFGABEN 180
LOESUNGEN 181
6 GRAPHISCHE DARSTELLUNGEN MIT MATPLOTLIB 183
6.1 HINWEISE ZUR INSTALLATION 183
6.2 XY-DIAGRAMME 183
IMAGE 3
INHALTSVERZEICHNIS W/
6.3 BALKEN-DIAGRAMME 187
6.4 TORTEN-DIAGRAMME 189
6.5 POLAR-DIAGRAMME 190
6.6 HISTOGRAMME 191
6.7 SUBPLOTS 192
6.8 AXES 194
6.9 ANMERKUNGEN UND LEGENDEN 195
AUFGABEN 197
LOESUNGEN 197
7 COMPUTERALGEBRA MIT SYMPY 201
7.1 HINWEISE ZUR INSTALLATION 201
7.2 DIFFERENTIATION 202
7.3 INTEGRATION 203
7.4 POTENZREIHEN 205
7.5 MATRIZENRECHNUNG - LINEARE ALGEBRA 206
7.6 DIE DATENTYPEN RATIONAL UND FLOAT 208
7.7 NUETZLICHE ERGAENZUNGEN 209
AUFGABEN 211
LOESUNGEN 212
8 3D-GRAFIK MIT VPYTHON 215
8.1 HINWEISE ZUR INSTALLATION 215
8.2 SZENEN 216
8.3 GRUNDKOERPER 220
8.4 FACES 228
8.5 CONTROLS 231
8.6 STEUERUNG MIT TASTATUR UND MAUS 236
AUFGABEN 240
LOESUNGEN 242
9 AUSBLICK AUF PYTHON 3.2 249
9.1 HINWEISE ZUR INSTALLATION 249
9.2 EIN- UND AUSGABE 250
9.3 GANZZAHL- UND GLEITPUNKTZAHL-DIVISION 251
9.4 RANGE()-FUNKTION 252
9.5 DICTIONARIES 253
9.6 TEST AUF UNGLEICHHEIT 254
AUFGABEN 255
LOESUNGEN 256
LITERATURVERZEICHNIS 259
SACHWORTVERZEICHNIS 261
|
any_adam_object | 1 |
author | Woyand, Hans-Bernhard 1952- |
author_GND | (DE-588)13562679X |
author_facet | Woyand, Hans-Bernhard 1952- |
author_role | aut |
author_sort | Woyand, Hans-Bernhard 1952- |
author_variant | h b w hbw |
building | Verbundindex |
bvnumber | BV040737297 |
classification_rvk | ST 250 |
classification_tum | DAT 366f |
ctrlnum | (OCoLC)828796421 (DE-599)DNB102734951X |
dewey-full | 005.133 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.133 |
dewey-search | 005.133 |
dewey-sort | 15.133 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
format | Book |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>01697nam a2200409 c 4500</leader><controlfield tag="001">BV040737297</controlfield><controlfield tag="003">DE-604</controlfield><controlfield tag="005">20130417 </controlfield><controlfield tag="007">t</controlfield><controlfield tag="008">130208s2012 gw a||| |||| 00||| ger d</controlfield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">12,N45</subfield><subfield code="2">dnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">102734951X</subfield><subfield code="2">DE-101</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9783935340731</subfield><subfield code="c">Pb. : EUR 32.00 (DE) (freier Pr.), EUR 32.90 (AT) (freier Pr.), sfr 41.00 (freier Pr.)</subfield><subfield code="9">978-3-935340-73-1</subfield></datafield><datafield tag="024" ind1="3" ind2=" "><subfield code="a">9783935340731</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)828796421</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(DE-599)DNB102734951X</subfield></datafield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">DE-604</subfield><subfield code="b">ger</subfield><subfield code="e">rakddb</subfield></datafield><datafield tag="041" ind1="0" ind2=" "><subfield code="a">ger</subfield></datafield><datafield tag="044" ind1=" " ind2=" "><subfield code="a">gw</subfield><subfield code="c">XA-DE-BY</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-12</subfield><subfield code="a">DE-29T</subfield><subfield code="a">DE-83</subfield><subfield code="a">DE-91G</subfield><subfield code="a">DE-862</subfield><subfield code="a">DE-M347</subfield></datafield><datafield tag="082" ind1="0" ind2=" "><subfield code="a">005.133</subfield><subfield code="2">22/ger</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">ST 250</subfield><subfield code="0">(DE-625)143626:</subfield><subfield code="2">rvk</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">004</subfield><subfield code="2">sdnb</subfield></datafield><datafield tag="084" ind1=" " ind2=" "><subfield code="a">DAT 366f</subfield><subfield code="2">stub</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Woyand, Hans-Bernhard</subfield><subfield code="d">1952-</subfield><subfield code="e">Verfasser</subfield><subfield code="0">(DE-588)13562679X</subfield><subfield code="4">aut</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Python</subfield><subfield code="b">Einführung in die Programmierung und mathematische Anwendungen</subfield><subfield code="c">Hans-Bernhard Woyand</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Wilburgstetten</subfield><subfield code="b">Schlembach, J</subfield><subfield code="c">2012</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">VII, 264 S.</subfield><subfield code="b">Ill.</subfield><subfield code="c">240 mm x 170 mm</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="b">n</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="b">nc</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="650" ind1="0" ind2="7"><subfield code="a">Python</subfield><subfield code="g">Programmiersprache</subfield><subfield code="0">(DE-588)4434275-5</subfield><subfield code="2">gnd</subfield><subfield code="9">rswk-swf</subfield></datafield><datafield tag="689" ind1="0" ind2="0"><subfield code="a">Python</subfield><subfield code="g">Programmiersprache</subfield><subfield code="0">(DE-588)4434275-5</subfield><subfield code="D">s</subfield></datafield><datafield tag="689" ind1="0" ind2=" "><subfield code="5">DE-604</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">X:MVB</subfield><subfield code="q">text/html</subfield><subfield code="u">http://www.schlembach-verlag.de/buecher.php?bnr=73</subfield><subfield code="3">Kurzbeschreibung</subfield></datafield><datafield tag="856" ind1="4" ind2="2"><subfield code="m">DNB Datenaustausch</subfield><subfield code="q">application/pdf</subfield><subfield code="u">http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=025717295&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA</subfield><subfield code="3">Inhaltsverzeichnis</subfield></datafield><datafield tag="999" ind1=" " ind2=" "><subfield code="a">oai:aleph.bib-bvb.de:BVB01-025717295</subfield></datafield></record></collection> |
id | DE-604.BV040737297 |
illustrated | Illustrated |
indexdate | 2024-08-01T11:23:41Z |
institution | BVB |
isbn | 9783935340731 |
language | German |
oai_aleph_id | oai:aleph.bib-bvb.de:BVB01-025717295 |
oclc_num | 828796421 |
open_access_boolean | |
owner | DE-12 DE-29T DE-83 DE-91G DE-BY-TUM DE-862 DE-BY-FWS DE-M347 |
owner_facet | DE-12 DE-29T DE-83 DE-91G DE-BY-TUM DE-862 DE-BY-FWS DE-M347 |
physical | VII, 264 S. Ill. 240 mm x 170 mm |
publishDate | 2012 |
publishDateSearch | 2012 |
publishDateSort | 2012 |
publisher | Schlembach, J |
record_format | marc |
spellingShingle | Woyand, Hans-Bernhard 1952- Python Einführung in die Programmierung und mathematische Anwendungen Python Programmiersprache (DE-588)4434275-5 gnd |
subject_GND | (DE-588)4434275-5 |
title | Python Einführung in die Programmierung und mathematische Anwendungen |
title_auth | Python Einführung in die Programmierung und mathematische Anwendungen |
title_exact_search | Python Einführung in die Programmierung und mathematische Anwendungen |
title_full | Python Einführung in die Programmierung und mathematische Anwendungen Hans-Bernhard Woyand |
title_fullStr | Python Einführung in die Programmierung und mathematische Anwendungen Hans-Bernhard Woyand |
title_full_unstemmed | Python Einführung in die Programmierung und mathematische Anwendungen Hans-Bernhard Woyand |
title_short | Python |
title_sort | python einfuhrung in die programmierung und mathematische anwendungen |
title_sub | Einführung in die Programmierung und mathematische Anwendungen |
topic | Python Programmiersprache (DE-588)4434275-5 gnd |
topic_facet | Python Programmiersprache |
url | http://www.schlembach-verlag.de/buecher.php?bnr=73 http://bvbr.bib-bvb.de:8991/F?func=service&doc_library=BVB01&local_base=BVB01&doc_number=025717295&sequence=000001&line_number=0001&func_code=DB_RECORDS&service_type=MEDIA |
work_keys_str_mv | AT woyandhansbernhard pythoneinfuhrungindieprogrammierungundmathematischeanwendungen |
Inhaltsverzeichnis
Schweinfurt Zentralbibliothek Lesesaal
Signatur: |
2000 ST 250 P99 W938 |
---|---|
Exemplar 1 | ausleihbar Verfügbar Bestellen |