Python Forum
Self re-initializing variable?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Self re-initializing variable?
#1
Hello,
I'm testing this snippet of code:
ld = [1, 2, 3]
ll = ['a', 'b', 'c']
loft = zip(ll, ld)
#for i in loft:
#    print(i)
print(loft)
d = dict(loft)
print(d)
If I uncomment the for loop the dictionary will be empty. I suppose for some reason loft reinitialize itself as empty variable.
I want to know if it's a normal behavior or my poor understanding of the language specifications.
Thanks.
Reply


Messages In This Thread
Self re-initializing variable? - by python_user_n - May-03-2019, 02:16 PM
RE: Self re-initializing variable? - by ichabod801 - May-03-2019, 02:27 PM
RE: Self re-initializing variable? - by Gribouillis - May-03-2019, 02:32 PM
RE: Self re-initializing variable? - by Gribouillis - May-03-2019, 02:38 PM
RE: Self re-initializing variable? - by Gribouillis - May-03-2019, 02:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Auto-py-to-exe Stuck At 'Initializing' killingtime 5 7,522 Jan-21-2024, 10:52 PM
Last Post: ShiDari
  "unexpected keyword arg" when initializing my subclasses Phaze90 3 3,561 Nov-25-2022, 07:39 PM
Last Post: Gribouillis
  Initializing a PRINTDLG structure-how to hammer 4 1,642 Jun-08-2022, 07:07 PM
Last Post: jefsummers
  Syntax when initializing empty lists Mark17 2 1,518 Jun-02-2022, 04:09 PM
Last Post: Mark17
  Initializing, reading and updating a large JSON file medatib531 0 1,917 Mar-10-2022, 07:58 PM
Last Post: medatib531

Forum Jump:

User Panel Messages

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