Posts

Showing posts from February 8, 2019

Naval Surface Warfare Center Crane Division

Image
Naval Surface Warfare Center Crane Division is the principal tenant command located at Naval Support Activity Crane. NSA Crane is a United States Navy installation located approximately 35 miles southwest of Bloomington, Indiana and predominantly located in Martin County, but small parts also extend into Greene and Lawrence counties. It was originally established in 1941 under the Bureau of Ordnance as the Naval Ammunition Depot for production, testing, and storage of ordnance under the first supplemental Defense Appropriation Act. The base is named after William M. Crane. The base is the third largest naval installation in the world by geographic area and employs approximately 3,300 people. The closest community is the small town of Crane, which lies adjacent to the northwest corner of the facility. Contents 1 Operations 2 Strategic Missions 3 Electronic Warfare 4 Expeditionary Warfare 5 History 6 Tenants 7 Geography 8 See also 9 Referenc

How to make different length list to a single dataframe in python?

Image
0 0 Structure of my data is in this form. data1: ['https://www.fullstackpython.com/', ['https://www.fullstackpython.com/table-of-contents.html', 'https://www.fullstackpython.com/blog.html'], [['Introduction', 'Development Environments', 'Web Development ', 'Web App Deployment', 'Data', ''], ['5 Years of Full Stack Python', 'GitPython and New Git Tutorials ', 'First Steps with GitPython']], [[0.0, 0.0, 0.25, 0.29, 0.25, 0.25], [0.0, 1.0, 0.19]]] How to make different length list to a single Data frame in python? I have tried with pandas DataFrame .But it wont work since each list in data1 has different length. Same problem for the zip function also.