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

dict_setdefault.py

Blame
  • string_find.py 419 B
    print("hello world".find("ll"))
    print("hello world".find("ll", None))
    print("hello world".find("ll", 1))
    print("hello world".find("ll", 1, None))
    print("hello world".find("ll", None, None))
    print("hello world".find("ll", 1, -1))
    print("hello world".find("ll", 1, 1))
    print("hello world".find("ll", 1, 2))
    print("hello world".find("ll", 1, 3))
    print("hello world".find("ll", 1, 4))
    print("hello world".find("ll", 1, 5))