for i in range(5): print(i*i)
for x in range(2,10,3): print("Hello"*x) print("------") print("done!")
for ch in "hello!": print(ch*3)
$ python gallons.py Gallons: 2 That's 7.58 liters.
$fname = basename($_SERVER['PHP_SELF']); $last_modified = filemtime($fname); print("Last updated: "); print(date("l, F d, Y", $last_modified)); print(" at "); print(date("h:i:s A", $last_modified)); ?>