zurueck zu Crassulaceae <<< Seite 10/20 >>> weiter zu Fotoseite
…::: letzte Änderung 18.11.2024 :::…
pinwand n.n.
demnächst auf dieser Seite: Programmsammlung ("snippets"") für Python 3
____________________________________________________________________________________________________________________________
# zeigt aktuelles Arbeitsverzeichnis und die ersten 3 Dateien darin an
def verz():
import os
print("Aktuelles Arbeitsverzeichnis ", os.getcwd())
print()
a = os.getcwd() # Arbeitsverzeichnis der Variablen "a" zuweisen
l = len(os.listdir(a))
print(os.listdir(a[:39])) # Anzeige der ersten 3 Dateien im aktuellen Verzeichnis
# if l > 39:
# print(os.listdir(a[40:l]))
verz() # Aufruf der Funktion
____________________________________________________________________________________________________________________________
# simuliert die in Python nicht vorhandene "GOTO" - Funktion
def goto(linenum):
global line
line = linenum
line = 1
while True:
if line == 1:
response = input("yes or no? ")
if response == "yes": # y statt yes geht zu Zeile 24, yes = 16
goto(2)
elif response == "no": # no > Zeile 19
goto(3)
else:
goto(100)
elif line == 2:
print ("2 Thank you for the yes!")
goto(20)
elif line == 3:
print ("3 Thank you for the no!")
goto(20)
elif line == 20:
break
elif line == 100:
print ("(other) You cannot decide between yes or no?")
goto(1)
____________________________________________________________________________________________________________________________
____________________________________________________________________________________________________________________________
01 - Home + 02 - N�tzliche Links + 03 - Aphorismen + 04 - Flohmarkt Berlin + 05 - Webmaster + 06 - PocketPC + 07 - Crassulaceae - ebay + 09 - Pinwand + 10 - Segelschiff Krig Vig + 11 - Chat + 12 - Onlinegames + 13 - Newsticker + 14 - Web-Radio + 15 - Englisch/Franz�sisch �bersetzen + 16 - Korea(nisch) + 17 - Routenplaner/Shop + 18 - Nachricht hinterlassen + 19 - "Under Construction" + 20 - Disclaimer + 21 - Handy Extras