Python: Exemplos interessantes: Difference between revisions
(Criou a página com "= Example 1 = style1_col1_style2_col2 = [ ('s-green', '95%', 's-red', '8%'), ('s-yellow', '85%', 's-yellow', '70%'), ('s-green', '95%', 's-good', '95%') ]...") |
|||
Line 7: | Line 7: | ||
] | ] | ||
for (style1, col1, style2, col2) in | for (style1, col1, style2, col2) in style1_col1_style2_col2: | ||
print('<tr><td class="%s">%s</td><td class="%d">%s</td></tr>', style1, col1, style2, col2) | print('<tr><td class="%s">%s</td><td class="%d">%s</td></tr>', style1, col1, style2, col2) | ||
Revision as of 14:18, 28 December 2017
Example 1
style1_col1_style2_col2 = [ ('s-green', '95%', 's-red', '8%'), ('s-yellow', '85%', 's-yellow', '70%'), ('s-green', '95%', 's-good', '95%') ] for (style1, col1, style2, col2) in style1_col1_style2_col2:
print('%s%s', style1, col1, style2, col2)
Ver também
- NodeJs: Instalando o NodeJs no Linux
- MongoDB: Instalando o MongoDB no Linux
- Nginx: Instalando o Nginx no Linux