IHYPRESS PROGRAMMING
CGI/Python programs with code and output for beginners
classic asp
HOME | ASP | C | CSS | GNUPLOT | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
Python (CGI Programming) ❯ Print Statement
<04>
#!/usr/bin/python import sys from math import * print "Content-type: text/html\n\n" print "<div style='font-size:1.3em;color:BlueViolet;font-family:monospace;'>" #integer division d = 5 / 4 print '5/4 is '; print (d); print '<br>'; #math functions y = 8.4 - 50.22 print (fabs (y)); print '<br>'; print (floor (y)); print '<br>'; print (sqrt (2.0)); print '<br>'; print (sin (45)); print '<br>'; print (cos (90)); print '<br>'; #strings composer = "Wolfgang Amadeus Mozart" print (composer); print '<br>'; print ('Martha\'s Vineyard'); print '<br>'; print ("Martha's Vineyard") print ("</div>")
Hergestellt in Deutschland / Made in Germany
5/4 is 1
41.82
-42.0
1.41421356237
0.850903524534
-0.448073616129
Wolfgang Amadeus Mozart
Martha's Vineyard
Martha's Vineyard
COPYRIGHT © 2015-2025 IHY PRESS Frankfurt am Main 60329 Deutschland