In [1]:
x = 2**14 #es wird 2 hoch 12 berechnet d.h. 2*2*2*2*2*2*2*2*2*2*2*2 Welche Zahl ergibt das ?
In [2]:
print (x)
# Wie sind Variablen Namen zu definieren ?
In [3]:
x= x/2 # was wird jetzt berechnet ?
# geben SIe das Ergebnis aus. Welcher Befehl ist zu verwenden ?
In [4]:
print x
In [5]:
x = 14 # ganzzahlig (integer)
print x
In [6]:
11 * 27 #Ergebnis int
Out[6]:
In [7]:
11 * 27.0 #Ergebnis float
Out[7]:
In [8]:
type(24/3.0) #Ergebnis float
Out[8]:
In [9]:
24//3 #Ergebnis int
Out[9]:
In [10]:
21//3.0 #Ergebnis float
Out[10]:
In [11]:
21//3.2 #Ergebnis float whose value is the lower integer bound of 21//3.2
Out[11]:
In [14]:
21%4 #Ergebnis int (the remainder of dividing 21 by 4)
Out[14]:
In [15]:
21%4.4 #Ergebnis float (21 - 21//4.4)
Out[15]:
In [16]:
21**4 #Ergebnis int (21 hoch 4)
Out[16]:
In [17]:
21**4.2 #Ergebnis float
Out[17]:
In [18]:
x = "Dies ist ein Text in Python!"
In [19]:
x[3] #Ergebnis das 4-te (i+1)-te Zeichen in x
Out[19]:
In [20]:
x[-1] #Ergebnis das letzte Zeichen in x
Out[20]:
In [21]:
x[-2] #Ergebnis das zweit-letzte Zeichen in x
Out[21]:
In [22]:
x[32] #IndexError. Out of range
In [23]:
len(x) #ergibt die Länge des strings (als integer)
Out[23]:
In [24]:
y=str(100) #Umwandlung der Zahl 100 in einen string
print(y)
type(y)
Out[24]:
In [25]:
x[7:11] #Gibt das 8. bis zum 11. Zeichen zurück (i.e., 11-7 Zeichen)
Out[25]:
In [26]:
x[7:] #Gibt jedes Zeichen ab der Position 7 bis zum Ende zurück(Wichtig: Es ist das 8. Zeichen, da der Index bei 0 beginnt)
Out[26]:
In [27]:
x[0::2] #returns a substring starting from 0, going to the end (omitted), 2 characters at a time
Out[27]:
In [28]:
x[::-1] #Start from whatever makes sense as the start, go to whatever makes sense as the end, go backward
# one character at a time
#Here it makes sense to start at the end and go all the way to the beginning (because of the -1)
#Returns a reversed string
Out[28]:
In [29]:
x.find('ein') #Returns the location of the first 'ein' found
Out[29]:
In [30]:
x.find('halo') #Returns -1. I.e., the substring was not found in x
Out[30]:
In [31]:
x[3] = 'b' #TypeError. Can't change a string
In [32]:
x = "Hallo"
y = x
print(id(x),id(y))
#x and y are the same string
In [33]:
x="Dies ist ein Text in Python!"
print(id(x),id(y))
#x now points to a different string. y is still the same old string at the same old location!
In [34]:
#Der plus operator concatenates two strings to give rise to a third string
x="Hallo"
y="Peter"
z=x+y
print(x,y,z,id(x),id(y),id(z)) #x, y und z sind unterschiedliche strings
In [35]:
#Since python doesn't understand that we need a space between Hello and Dolly, we need to add it ourselves
z = x + " " + y
print(z)
In [36]:
x=4
y=2
z=(x==y) #False weil x und y nicht gleich sind
z=(x==x) #True weil x und x gleich sind
In [37]:
#Comparison is by value
x = "Hallo"
y = "Hallo"
print(id(x),id(y)) #Different strings
In [38]:
print(x == y) #But they have the same value
In [39]:
x=8
print(x,bool(x)) #Non-zero numbers, strings with values are always True
In [40]:
x='' #Leerer string
print(x,bool(x)) #Leere strings und die Zahl 0 sind immer False
In [41]:
x=4
y=5
print(x>2 and y>2) #True because both x and y are greater than 2
In [42]:
print(x>2 and y<2) #False because one is False
In [43]:
print(x<2 and y<2) #False because both are False
In [44]:
print(x>2 or y>2) #True because at least one is True
In [45]:
print(x<2 or y>2) #True because at least one is True
In [46]:
print(x<2 or y<2) #False because both are False
In [47]:
print(not(x>2 or y>2)) #False because x>2 or y>2 is True
In [48]:
print(x or y) #4 because x is True (non-zero) so no need to evaluate y. Value of x is returned
In [49]:
print(x and 0+3) #3 because x is non-zero but need to check the second operand as well. That evaluates to 3
In [50]:
S = "Los geht es"
X = "s"
X in S # ergibt true da "s" in S enthalten ist
Out[50]:
In [51]:
x = p + 10 #NameError! p ist nicht definiert
In [52]:
p = 70
x = p + 20 #jetzt funktioniert es
print(x)
In [53]:
x,y = 3,4 #Zuweisung in der Reihenfolge der Variablen
print(x,y) #x ist 3 und y ist 4
In [54]:
x = 70
x += 40
y = 50
y -= 19
print(x) #x ist 110 denn x += 40 ist equivalent zu x = x+40
print(y) #y ist 31 denn y -= 19 ist äquivalent zu y = y - 19
In [ ]:
In [55]:
import math as m
In [56]:
import math as m
x=45
y=m.sin(x)
print(y)
In [57]:
import hashlib
y=str(1200)
z=hashlib.md5(y)
print(z)
In [58]:
import hashlib
y="abcdefghijk" #gleiche strings ergeben gleiche hashes
x="abcdefghijk"
x1="abcdffgijk"
x2="abcdffgijk"
t=hashlib.sha256(y)
print(t.hexdigest())
z=hashlib.sha256(x)
print(z.hexdigest())
w=hashlib.sha256(x1)
print(w.hexdigest())
v=hashlib.sha512(x2)
print(v.hexdigest())
m=len(v.hexdigest())
print(m)
print(type(v))
x3=v.hexdigest()
print(type(x3))
print(x3[:64])
print(x3[64:])
In [59]:
y=65
x=bin(y)# Umwandlung des Wertes in y in eine binäre Darstellung
print(x)
x1=x.split('0b') #bitweise Darstellung erzeugt mit split
print(x1[1])
z=hex(y)
print(z)
w='A'
print(ord(w))# ordnet dem Zeichen in der Variablen w eine Ascii Ordnungszahl zu
chr(65)# ordnet der Zahl ein Ascii Zeichen zu
Out[59]:
In [60]:
print(bin(65))
bin(65 << 4) #shift der binären Zahl um 4 Stellen nach links
Out[60]:
In [ ]:
In [ ]: