ZVON > References > XHTML Reference |
Intro / Search / ZVON |
Strict XHTML | Frameset | >> Strict << | Transitional | [Comparison] |
---|
Element: | hr |
Attributes: | | class | dir | id | lang | onclick | ondblclick | onkeydown | onkeypress | onkeyup | onmousedown | onmousemove | onmouseout | onmouseover | onmouseup | style | title | xml:lang | |
Parents: | | blockquote | body | button | dd | del | div | fieldset | form | ins | li | map | noscript | object | td | th | |
Your browser display: |
If called with: John
#!/usr/bin/python
import sys
print "Hello " + sys.argv[1] + "!"
Outputs: Hello John!
Source [ Open as XHTML document ] |
<p>If called with: <kbd>John</kbd> </p> <hr/> <h3>Program:</h3> <pre> <code> #!/usr/bin/python import sys print "Hello " + <var>sys.argv[1]</var> + "!" </code> </pre> <hr/> <p>Outputs: <samp> Hello John! </samp> </p> |