Python Forum
How to make this dictionary-generating code more efficient?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to make this dictionary-generating code more efficient?
#3
Delete line 9 (if you do the rest below)
Delete lines 13-16
Change 17 to
cipher_dict = {a:b for (a,b) in zip(sndlst,str)}
though I agree with not using str as a variable.
Delete 18-20, move the print statement to after line 23 (style issue - your function is called make_cipher_dict, not print it, so would change 21 to return the dictionary and print it from the main program. That makes the function much more re-usable)
Reply


Messages In This Thread
RE: How to make this dictionary-generating code more efficient? - by jefsummers - Oct-08-2019, 02:26 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [split] help me make this code better please (basic) Rustam 2 2,288 Jun-19-2020, 01:27 PM
Last Post: Rustam
  John Guttag Book - Finger Exercise 4 - need help to make the code better pritesh 12 10,761 May-06-2020, 05:10 PM
Last Post: riteshp
  Creating code to make up to 4 turtle move simultaneously in a random heading J0k3r 3 5,528 Mar-05-2018, 03:48 PM
Last Post: mpd
  How to make faster this code Ace 1 2,995 Oct-23-2017, 12:11 PM
Last Post: Larz60+
  How can I make faster that code BlueEva00 1 2,711 Oct-18-2017, 03:51 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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