Startup Data scientist Blog

データ分析系のテック情報を発信します

2023-07-25から1日間の記事一覧

Python sample code: リスト内の再表記

Python Sample code リスト内の再表記 a = [1,2,3,4,5,6,7,8,9,10] print('The current data is :',a) print('リスト内の数 :',len(a)) print('リストの最大値 :',max(a)) print('リストの最小値 :',min(a)) >>> he current data is : [1, 2, 3, 4, 5, 6, 7,…

Python sample code: 日付表示

Pythonで日付を表示させるサンプルコード import datetime d = datetime.datetime.now() print('Year: ', d.year) print('Month: ', d.month) print('Day: ', d.day) >>> Year: 2023Month: 7Day: 25