投稿

2月 6, 2021の投稿を表示しています

what is python good for

Professionally,  Python  is  great  for backend web development, data analysis, artificial intelligence, and scientific computing. Many developers have also used  Python  to build productivity tools, games, and desktop apps, so there are plenty of resources to help you learn how to do those as well.

turtle methods

setup(w,h) setup(width=500,height=500) pen() 自動的にキャンパスを生成 pensize(2) bgcolor("black") up() down() goto(x,y) home() 中心に戻す reset() 図形を消して最初の位置に戻る clear 図形を消去する setheading() forward(100) right(90) left(90) color("red") color(1,0,0) begin_fill() end_fill() circle(10) setx(100) sety(100) hideturtle() screensize( canvwidth=100, canvheight=100) speed("fastest") speed(10)

40クラスで同じ誕生日の人がいる確率

イメージ
このケースでは、40人クラスで同じ誕生日の人が全くいない確率を求め、 最後に、全体の1から引き算する方式を取ります。 #same birthday in 40 member class n=1.0 k=1.0 for i in range(40): n=n*(365-i)/365.0 k=k-n print(k)