Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Circular import dependency
#9
Compare

import pandas
df = pandas.read_csv('some_file.csv') # here we use pandas
vs

import pandas as pd # we assign alias pd
df = pd.read_csv('some_file.csv') # here we use pd, not pandas
hobbyist likes this post
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
Circular import dependency - by hobbyist - Feb-23-2021, 09:45 AM
RE: Circular import dependency - by Gribouillis - Feb-23-2021, 10:26 AM
RE: Circular import dependency - by hobbyist - Feb-23-2021, 10:42 AM
RE: Circular import dependency - by Gribouillis - Feb-23-2021, 10:54 AM
RE: Circular import dependency - by buran - Feb-23-2021, 11:04 AM
RE: Circular import dependency - by hobbyist - Feb-23-2021, 11:08 AM
RE: Circular import dependency - by buran - Feb-23-2021, 11:19 AM
RE: Circular import dependency - by hobbyist - Feb-23-2021, 11:29 AM
RE: Circular import dependency - by buran - Feb-23-2021, 11:48 AM
RE: Circular import dependency - by Gribouillis - Feb-23-2021, 11:57 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [solved] What is the best/pytonic way to import with dependency ? SpongeB0B 2 714 Jul-09-2023, 05:05 AM
Last Post: SpongeB0B
  Request Dependency warning thetechnodino 0 963 Dec-20-2022, 02:12 AM
Last Post: thetechnodino
  What is a circular import? asked by a newbie of newbies ineuw 1 1,000 Sep-16-2022, 07:27 PM
Last Post: Gribouillis
  Circular Import Led_Zeppelin 3 2,692 Jul-14-2021, 07:41 PM
Last Post: snippsat
  help on pandas circular import jip31 2 8,580 May-18-2021, 11:54 AM
Last Post: jip31
  Poetry Dependency general Help felipesodre 0 1,470 Jan-14-2021, 07:46 PM
Last Post: felipesodre
  Installing nltk dependency Eshwar 0 1,867 Aug-30-2020, 06:10 PM
Last Post: Eshwar
  How do I change wx version dependency? belfacode 0 1,588 May-17-2020, 09:18 AM
Last Post: belfacode
  Module Dependency installation error draems 10 10,373 Feb-12-2017, 08:18 AM
Last Post: wavic
  Robot Stay Inside Circular Ring webmanoffesto 4 6,747 Dec-07-2016, 06:57 PM
Last Post: micseydel

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020