On Thursday, July 24, 2014 10:25:52 AM UTC-4, Marko Rauhamaa wrote: > #!/usr/bin/env python3 > > import math > > for x in range(0, 361, 15): > > print(int((math.sin(x / 180 * math.pi) + 1) * 30 + 0.5) * " " + "*") > > ======================================================================== > > > Marko
I like your method, but I get a column of '*'. Maybe you have other intentions
of your code. I am puzzled about the last part of your code and want to learn
from it (" * " " + "*" ").
>>> *
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
--
https://mail.python.org/mailman/listinfo/python-list
