Wednesday, January 11, 2023

Cali_Floods

 Can't catch a break, California. Five storms down in the last two weeks, four 

to go in the next ten days.

https://www.cnn.com/2023/01/11/weather/california-flooding-atmospheric-river-wednesday/index.html


But then, things are looking better with respect to reservoir levels. Might well be

back to normal once all this is over!!

https://youtu.be/_ZYTKxH9Wlc


                                                        *     *     *

Trying various approaches:

                                                                               



from turtle import*

my_t = Turtle()
my_t.color('green')
my_t.speed(1)

def make_Shape(numSides):
my_t.begin_fill()
for i in range(numSides):

my_t.forward(100)
my_t.left(360.0/numSides)
my_t.end_fill()

numSides = input("How many would you like? ")

make_Shape(int(numSides))

done()

No comments: