Created
August 3, 2020 12:28
-
-
Save BMU-Verlag/e66ee7d4315f9cbf428a194a40726411 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def elementEntfernen (liste): | |
neueListe = liste[1:] | |
return neueListe | |
liste = [2, 7, 9, 4] | |
print(liste) | |
liste2 = elementEntfernen(liste) | |
print(liste2) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment