project01
the question
- 最早時間出發為第一架航班, 
- 接下來第二架要求:到達日期與第一架航班的出發日期的時間間隔不小于45分鐘,且序號最小 
- 依次類推將所有航班排完 
the data
the transmission of the data
import numpy as np import pandas as pd from pandas import Series, DataFrame
df1 = pd.read_clipboard()df1
df1.shapedf1.Tdf1.head()df1s1 = df1['出發\n時刻']df2 = df1['出發\n日期'].map(str)+df1['出發\n時刻'].map(str)s2 = df1['出發\n日期']To Be Continued
轉載于:https://www.cnblogs.com/hugeng007/p/9655997.html
總結
 
                            
                        - 上一篇: js 字符串,数组扩展
- 下一篇: java和C++有什么异同
