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 7419577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T08:05:43+00:00 2026-05-29T08:05:43+00:00

I am trying to write a Monte Carlo code where I optimize the elements

  • 0

I am trying to write a Monte Carlo code where I optimize the elements in a dictionary. For example, I define my original dictionary as

A = {}
A[1] = ['a','b','c']
A[2] = ['d','e','f']

This results in

>>> A
{1: ['a', 'b', 'c'], 2: ['d', 'e', 'f']}

Now say that a trial move in my Monte Carlo is to take a random element ‘a’ from A[1] and put it in A[2]. However, I want to keep my original dictionary. So I first create a new dictionary:

B = A

And then in B I make the desired changes

B[1].remove('a')
B[2].append('a')

That results in the modified dictionary that I wanted to obtain:

>>> B
{1: ['b', 'c'], 2: ['d', 'e', 'f', 'a']}

However this has also changed my original dictionary A, which I did want to backup.

>>> A
{1: ['b', 'c'], 2: ['d', 'e', 'f', 'a']}

Is there any way that I can do this?
Thanks for your help!

  • 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-29T08:05:45+00:00Added an answer on May 29, 2026 at 8:05 am

    You need to do a deep copy of the dictionary:

    import copy
    B = copy.deepcopy(A)
    

    If you don’t do this, the array references are shared between the dictionaries.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hiya im trying to write a code for basic 1D Monte-Carlo integration. To do
Im trying to write this code for school, and im absoultly stuck on what
I found this code online. I was trying to get it to write the
I'm trying to write a blog post which includes a code segment inside a
I'm trying to write this as part of stored procedure on SQL Server 2000.
I've been stuck trying to write this regular expression I need. Basically, I have
I have been trying to write Scheme code to get the date and store
I'm fairly new to JavaScript and am trying to write some code that lists
I'm trying to write a composite component like this <!DOCTYPE html PUBLIC -//W3C//DTD XHTML
I'm trying to write a method that generates multiple invoices. This is for a

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.