Skip to content
Snippets Groups Projects
Select Git revision
  • fdca4170881679608f530b64b10f85b43614cd9b
  • main default protected
  • renovate/lock-file-maintenance
  • demo protected
  • person-select-custom
  • dbp-translation-component
  • icon-set-mapping
  • port-i18next-parser
  • remove-sentry
  • favorites-and-recent-files
  • revert-6c632dc6
  • lit2
  • advertisement
  • wc-part
  • automagic
  • publish
  • wip-cleanup
  • demo-file-handling
18 results

adapter-lit-element.js

Blame
  • lec_4_1.py 320 B
    #Liste anlegen
    list1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]
    list2 = ['Programmieren', 'lernen', 'mit', 'Python']
    list = ['Python', 3.11, 'Grundlagen', [1,2,3]]
    
    #Zugriff an einem Index mit
    print(list[3])
    
    #Letztes Element der Liste mit [-1]
    print(list2[-1])
    
    #Wertebereich der Liste mit [von:bis], bis exclusive
    print(list1[2:6])