以下のように1つのデータフレーム「csv」があります
movieId | title| genres|
+-------+--------------------+--------------------+
| 1| Toy Story (1995)|Adventure|Animati...|
| 2| Jumanji (1995)|Adventure|Childre...|
コマンド 1 : 出力 1 print("PRINT",csvData.dtypes)
:('PRINT', [('movieId', 'int'), ('title', 'string'), ('genres', 'string')])
コマンド 2 :print ("SAMPLE dictionary**",dict(csvData.dtypes))
出力 2 :'SAMPLE dictionary**', {'genres': 'string', 'movieId': 'int', 'title': 'string'}
両方の OUTPUT を比較すると、dict() 関数が要素の順序を変更することがわかります。どうすればそれを回避できますか?