Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/utopo (30-Jun @ 14:43)

Syntax Highlighted Code

  1. import re
  2.  
  3. str = "* will * there."
  4. all = re.findall("\*", str)
  5.  

Plain Code

import re

str = "* will * there."
all = re.findall("\*", str)

Permalink: http://codedumper.com/utopo