| 
  
   Size: 2306 
  
  Comment:  
 | 
  
   Size: 2723 
  
  Comment:  
 | 
| Deletions are marked like this. | Additions are marked like this. | 
| Line 5: | Line 5: | 
| = For loops = == a) == {{{ #!python  | 
|
| Line 6: | Line 10: | 
| for i in range(0,4,1): print i  | 
|
| Line 7: | Line 13: | 
| = For loops = == a) == {{{#!python for ...: print i  | 
|
| Line 16: | Line 14: | 
| 1 | 1 | 
| Line 20: | Line 18: | 
| Line 44: | Line 41: | 
| Line 49: | Line 45: | 
| In [51]: a='0' In [52]: b='1' In [53]: 4*a+4*b Out[53]: '00001111' ----- In [44]: a=0,1,2,3 In [45]: a*4 Out[45]: (0,1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0) Second Solution (in einer Schleife): a = [range(0,4)] for item in a: b = item * 4 b.sort() c = item * 4 d = [b,c] print d  | 
|
| Line 50: | Line 80: | 
| Line 54: | Line 83: | 
| Line 57: | Line 85: | 
| Line 62: | Line 89: | 
|  * [('a',1),('b',2)] is a | 
 * [('a',1),('b',2)] is a ... Provide an alternative way to assign A  | 
| Line 66: | Line 94: | 
| Line 69: | Line 96: | 
| One byte consists of eight bit and covers the value range of 0..255 ({{{uint8}}}, unsigned integer)  or -128..127.  | 
One byte consists of eight bit and covers the value range of 0..255 ({{{uint8}}}, unsigned integer) or -128..127. | 
| Line 72: | Line 98: | 
| {{{#!python | {{{ #!python  | 
| Line 79: | Line 107: | 
| Line 81: | Line 108: | 
| Line 92: | Line 118: | 
| Line 94: | Line 119: | 
| Line 104: | Line 128: | 
| {{{#!python | {{{ #!python  | 
| Line 107: | Line 133: | 
| Line 112: | Line 137: | 
| * Display the elements {{{3:6}}} of arrays {{{B}}} | * Display the elements {{{3:6}}} of arrays {{{B}}} | 
| Line 114: | Line 139: | 
| * Insert a new key-values pair {{{C:array(range(0,10,-1))}}} into {{{D}}} | * Insert a new key-values pair {{{C:array(range(0,10,-1))}}} into {{{D}}} | 
| Line 118: | Line 143: | 
| = Reading and practicing = Install python and ipython on your computer and read through the tutorial which comes with the documentation. There are translations in other languages:  | 
|
| Line 119: | Line 146: | 
| = Reading and practicing = Install python and ipython on your computer and read through the tutorial which comes with the documentation. There are translations in other languages:  | 
For loops
a)
Insert an expression in ... to get the results.
Solution:
b)
0 0 0 1 0 2 0 3 1 0 1 1 1 2 1 3 2 0 2 1 2 2 2 3 3 0 3 1 3 2 3 3
- What are the corresponding loops?
 
Solution:
In [51]: a='0' In [52]: b='1' In [53]: 4*a+4*b
Out[53]: '00001111'
In [44]: a=0,1,2,3
In [45]: a*4
Out[45]: (0,1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0)
Second Solution (in einer Schleife):
a = [range(0,4)]
for item in a:
- b = item * 4 b.sort() c = item * 4 d = [b,c] print d
 
Data types
A=dict([('a',1),('b',2)])Please specify the data types:
- A is a ...
 - 'a' is a ...
 - 1 is a ...
 - ('a',1) is a ...
 - [('a',1),('b',2)] is a ...
 
Provide an alternative way to assign A
Scipy numeric types
from scipy import *
One byte consists of eight bit and covers the value range of 0..255 (uint8, unsigned integer) or -128..127.
a)
What is the value range of the following types and how many bytes are allocated in the memory?
- bool8
 - uint8, int8
 - uint16, int16
 - uint32, int32
 - uint64, uint64
 
Solution:
b)
How many bytes are allocated in the memory by these floating point types?
- float32, float64, float96
 - complex64, complex128, complex192
 
Solution:
Data structures
a)
   1 D={'A':array(range(10)),'B':array(range(10))+1}
Which keys contains the dictionary D
Get the keys with the method D.keys()
Display all values of D using the method .values()
Display array A
Display the elements 3:6 of arrays B
- Set this elements to 0
 Insert a new key-values pair C:array(range(0,10,-1)) into D
Solution:
Reading and practicing
Install python and ipython on your computer and read through the tutorial which comes with the documentation. There are translations in other languages:
