I'm trying to have HTML generate random background colors using Python. What I have so far is:
print "<body bgcolor='%s'>" % choice
what python code should follow?

Recommended Answers

All 7 Replies

I was also thinking of using a list of colors, like this:
bgcolor = ["red","blue","silver","green","yellow"]
but again, i'm unsure of how to use the random function with this list

see random.choice

Hi!I was wondering if I could know how to implement HTML along with python,
Do i simply use IDLE and enter (html+python)
OR do I have to call library packagesetc??
Thank You

Yes,I mean templating systems.
So how could I use IDLE to start typing HTML code like this
<table>
<%
for item in items:
%>
<tr>
<th>Name</th>
<td><%= item.name %></td>
</tr>
<%
%>
</table>

Which templatng engine should I be using,to generate HTML pages?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.