Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7504415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T21:33:41+00:00 2026-05-29T21:33:41+00:00

I am importing a list from an outside document, and inputing that list into

  • 0

I am importing a list from an outside document, and inputing that list into a dictionary. This question is applicable to pretty much all values associated to a variable from inside a function. Once the function is complete how do I pull that information from the function with out having to assign the variables as global. Sorry if this question isnt very clear, im having trouble vocalizing it.

Here is the program so far. the dictionary ‘result’ has values while in the function but when I try to call it from outside the function its empty.

fin = open('words.txt')

def dictionary(words):
   result = {}
   for line in words:
      result[line] = 'yupp!' # dont care about value at the moment
   return result

word_dict = dictionary(fin)
'the' in word_dict# checking to see if a word is in the dictionary
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T21:33:44+00:00Added an answer on May 29, 2026 at 9:33 pm

    Use:

    result = dictionary(fin)
    

    to assign the value returned by dictionary to the variable result.

    Note that result is a global variable, so I’m not sure what you mean by “with
    out having to assign the variables as global”.


    def dictionary(words):
        result = {}
        for word in words:
            word = word.strip()
            result[word] = 'yupp!'
        return result
    
    with open('words.txt') as fin:
        result = dictionary(fin)
        print('the' in result)
    

    Alternatively,

    def dictionary(words):
        return dict.fromkeys((word.strip() for word in words), 'yupp')
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm importing some data from a CSV file, and numbers that are larger than
This might be a pretty basic question, or peculiar to my set up (hopefully
I imported a List of Strings from a file and put them into an
I have an app that is importing data from JSON and generating (through JQuery's
My app generates SSIS packages for importing data from Excel files. This is done
When importing numbers from a csv file, I need to convert them to floats
After importing content from a legacy website using the Feeds module, I'm left with
I am importing the CreateICeeFileGen() function from the unmanaged DLL mscorpe.dll in a C#
We are importing from CSV to SQL. To do so, we are reading the
Say I am importing the module 'foo' into the module 'bar'. Is it possible

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.