Skip to content
Snippets Groups Projects
Select Git revision
  • 00c0b8a989ae54f4466d15b78a2e8729baf441ef
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

list_clear.py

Blame
  • list_clear.py 55 B
    # tests list.clear
    x = [1, 2, 3, 4]
    x.clear()
    print(x)