access csv files in python












0















import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)


It is working properly, but the following code getting this error:



import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)

UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)









share|improve this question

























  • You have a folder like /r files/ in your csv_path. That r might be creating issues. You can try re-naming that folder to something else. It should work.

    – Mayank Porwal
    Nov 23 '18 at 9:47
















0















import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)


It is working properly, but the following code getting this error:



import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)

UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)









share|improve this question

























  • You have a folder like /r files/ in your csv_path. That r might be creating issues. You can try re-naming that folder to something else. It should work.

    – Mayank Porwal
    Nov 23 '18 at 9:47














0












0








0


0






import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)


It is working properly, but the following code getting this error:



import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)

UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)









share|improve this question
















import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path)


It is working properly, but the following code getting this error:



import pandas as pd
csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
data=pd.read_csv(csv_path)

UnicodeDecodeError Traceback (most recent call last)
<ipython-input-3-a90c76559f26> in <module>()
1 import pandas as pd
2 csv_path="D:/arun/textmining/r files/twitter_data_sets/GST/GST-28-08-2017/10-10-2017.csv"
----> 3 data=pd.read_csv(csv_path)






python pandas csv






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 23 '18 at 15:51









Paul Hodges

3,2311422




3,2311422










asked Nov 23 '18 at 9:34









arunarun

134




134













  • You have a folder like /r files/ in your csv_path. That r might be creating issues. You can try re-naming that folder to something else. It should work.

    – Mayank Porwal
    Nov 23 '18 at 9:47



















  • You have a folder like /r files/ in your csv_path. That r might be creating issues. You can try re-naming that folder to something else. It should work.

    – Mayank Porwal
    Nov 23 '18 at 9:47

















You have a folder like /r files/ in your csv_path. That r might be creating issues. You can try re-naming that folder to something else. It should work.

– Mayank Porwal
Nov 23 '18 at 9:47





You have a folder like /r files/ in your csv_path. That r might be creating issues. You can try re-naming that folder to something else. It should work.

– Mayank Porwal
Nov 23 '18 at 9:47












2 Answers
2






active

oldest

votes


















0














It is an encoding error. I hope utf8 can handle that.
Try



import pandas as pd
csv_path="D:/arun/datasets/US Presidential Data.csv"
data=pd.read_csv(csv_path,encoding='utf-8')





share|improve this answer































    0














    Try this:



    data = pd.read_csv(csv_path, encoding = "ISO-8859-1")



    Or



    data = pd.read_csv(csv_path, encoding = "utf-8")





    share|improve this answer



















    • 1





      thank you,its working

      – arun
      Dec 31 '18 at 10:17











    • You can't accept both answers, you can accept one and upvote both

      – Rahul Agarwal
      Dec 31 '18 at 10:18











    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443975%2faccess-csv-files-in-python%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    It is an encoding error. I hope utf8 can handle that.
    Try



    import pandas as pd
    csv_path="D:/arun/datasets/US Presidential Data.csv"
    data=pd.read_csv(csv_path,encoding='utf-8')





    share|improve this answer




























      0














      It is an encoding error. I hope utf8 can handle that.
      Try



      import pandas as pd
      csv_path="D:/arun/datasets/US Presidential Data.csv"
      data=pd.read_csv(csv_path,encoding='utf-8')





      share|improve this answer


























        0












        0








        0







        It is an encoding error. I hope utf8 can handle that.
        Try



        import pandas as pd
        csv_path="D:/arun/datasets/US Presidential Data.csv"
        data=pd.read_csv(csv_path,encoding='utf-8')





        share|improve this answer













        It is an encoding error. I hope utf8 can handle that.
        Try



        import pandas as pd
        csv_path="D:/arun/datasets/US Presidential Data.csv"
        data=pd.read_csv(csv_path,encoding='utf-8')






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 23 '18 at 9:41









        HayatHayat

        558516




        558516

























            0














            Try this:



            data = pd.read_csv(csv_path, encoding = "ISO-8859-1")



            Or



            data = pd.read_csv(csv_path, encoding = "utf-8")





            share|improve this answer



















            • 1





              thank you,its working

              – arun
              Dec 31 '18 at 10:17











            • You can't accept both answers, you can accept one and upvote both

              – Rahul Agarwal
              Dec 31 '18 at 10:18
















            0














            Try this:



            data = pd.read_csv(csv_path, encoding = "ISO-8859-1")



            Or



            data = pd.read_csv(csv_path, encoding = "utf-8")





            share|improve this answer



















            • 1





              thank you,its working

              – arun
              Dec 31 '18 at 10:17











            • You can't accept both answers, you can accept one and upvote both

              – Rahul Agarwal
              Dec 31 '18 at 10:18














            0












            0








            0







            Try this:



            data = pd.read_csv(csv_path, encoding = "ISO-8859-1")



            Or



            data = pd.read_csv(csv_path, encoding = "utf-8")





            share|improve this answer













            Try this:



            data = pd.read_csv(csv_path, encoding = "ISO-8859-1")



            Or



            data = pd.read_csv(csv_path, encoding = "utf-8")






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 23 '18 at 9:42









            Rahul AgarwalRahul Agarwal

            2,19351027




            2,19351027








            • 1





              thank you,its working

              – arun
              Dec 31 '18 at 10:17











            • You can't accept both answers, you can accept one and upvote both

              – Rahul Agarwal
              Dec 31 '18 at 10:18














            • 1





              thank you,its working

              – arun
              Dec 31 '18 at 10:17











            • You can't accept both answers, you can accept one and upvote both

              – Rahul Agarwal
              Dec 31 '18 at 10:18








            1




            1





            thank you,its working

            – arun
            Dec 31 '18 at 10:17





            thank you,its working

            – arun
            Dec 31 '18 at 10:17













            You can't accept both answers, you can accept one and upvote both

            – Rahul Agarwal
            Dec 31 '18 at 10:18





            You can't accept both answers, you can accept one and upvote both

            – Rahul Agarwal
            Dec 31 '18 at 10:18


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53443975%2faccess-csv-files-in-python%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Wiesbaden

            Marschland

            Dieringhausen