如何将结果存储在for循环中

时间:2018-06-26 16:04:50

标签: python pandas

我正在尝试使用python创建一个报表,其中for循环会在每个位置进行迭代,但是一旦运行此代码,它只会提供最后一个位置的数据。如何存储此循环的结果。

import inflect
import pandas as pd  

add_sum_data=pd.read_excel("~Add_Summary_17062018.xlsx")

location_code=add_sum_data.iloc[0:,0]

for GO in location_code:    
    ag_row_data = add_sum_data.loc[add_sum_data["location"]== GO]

1 个答案:

答案 0 :(得分:1)

为此可以使用list

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.admin.myapplication">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

results = list() for GO in location_code: results.append(add_sum_data.loc[add_sum_data["location"]== GO]) 包含所有结果。

要访问list中的项目,请使用从resultslen(results) - 1的整数索引:

0