hey guys, my last problem ^^ say i have a string which contains html, like
html = '<td class="p11_666699"><strong>100</strong></td>'
and a list like
numbers = [100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112,
113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125,
126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138,
139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150]
basically i want to do something like this:
html = '<td class="p11_666699"><strong>' + numbers + '</strong></td>'
edit: for some reason the code tags add curly brackets when i post this, so it messes up, sorry.