File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 590590 " print(hex(0xc0ffee))"
591591 ]
592592 },
593+ {
594+ "cell_type" : " markdown" ,
595+ "metadata" : {},
596+ "source" : [
597+ " Wir können mit Strings noch viel mehr tun. Ein paar Funktionen zeigen wir hier, mehr folgen später:"
598+ ]
599+ },
600+ {
601+ "cell_type" : " code" ,
602+ "execution_count" : 14 ,
603+ "metadata" : {},
604+ "outputs" : [
605+ {
606+ "name" : " stdout" ,
607+ "output_type" : " stream" ,
608+ "text" : [
609+ " LOREM IPSUM\n " ,
610+ " lorem ipsum\n " ,
611+ " Lorem ipsum\n "
612+ ]
613+ }
614+ ],
615+ "source" : [
616+ " t = \" loREm ipSUm\"\n " ,
617+ " \n " ,
618+ " # Alle Buchstaben groß:\n " ,
619+ " print(t.upper())\n " ,
620+ " \n " ,
621+ " # Alle Buchstaben klein:\n " ,
622+ " print(t.lower())\n " ,
623+ " \n " ,
624+ " # Den ersten Buchstaben groß:\n " ,
625+ " print(t.capitalize())"
626+ ]
627+ },
593628 {
594629 "cell_type" : " markdown" ,
595630 "metadata" : {},
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments