小数点.0をなくし整数にしたいです。そもそもExcelシートには整数ではいっているのですが、どのように変換するかわからないです。
よろしくお願いします。
python3
1import pandas as pd 2 3df = pd.read_excel(r'C:\xxxxx.xlsx', sheet_name="Sheet1") 4array1 = df.values.tolist() 5for l in array1: 6 name1,brand_id1,campainge1,sreport1,rreport1,buysreport1,buyrreport1,product_id1,brand_011,product_011 = l 7 name = name1 8 brand_id = brand_id1 9 campainge = campainge1 10 product_id = product_id1 11 brand_01 = brand_011 12 product_01 = product_011 13 print(name1,campainge1,product_id1,brand_id1,product_011,brand_011) 14
result
110007846.0 264.0 0.0 0.0
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2019/12/31 11:01
退会済みユーザー
2019/12/31 11:01
2019/12/31 11:42
退会済みユーザー
2019/12/31 12:11