Python Forum
How to convert string to variable?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to convert string to variable?
#1
Question 
Hi all,

I've had a hard time searching for this answer (Google suggests something different than I'm looking for).

VERY early in my code, I have dicts read in from a JSON file, resulting in:
  AWfromJSONfile=[1,20,300,4,5]
  AAfromJSONfile=[50,60,7,8,9]
  MAfromJSONfile=[300,400,50,60,70]

- MUCH later, I have a string variable called:
project <-- This could be either "AW", "AA", or "MA"

- For example:
project="AW" #<----(for example)

print(project + "fromJSONfile")
...how do I get the above print statement to print the contents:
1,20,300,4,5
...instead of the literal string:
"AWfromJSONfile" ?

Thanks much in advance!
CG
Reply


Messages In This Thread
How to convert string to variable? - by chatguy - Apr-12-2022, 04:58 PM
RE: How to convert string to variable? - by chatguy - Apr-12-2022, 05:28 PM
RE: How to convert string to variable? - by chatguy - Apr-12-2022, 05:31 PM
RE: How to convert string to variable? - by buran - Apr-12-2022, 08:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Replacing String Variable with a new String Name kevv11 2 822 Jul-29-2023, 12:03 PM
Last Post: snippsat
  convert string to float in list jacklee26 6 1,994 Feb-13-2023, 01:14 AM
Last Post: jacklee26
  Need help on how to include single quotes on data of variable string hani_hms 5 2,143 Jan-10-2023, 11:26 AM
Last Post: codinglearner
  python r string for variable mg24 3 2,923 Oct-28-2022, 04:19 AM
Last Post: deanhystad
  how to convert tuple value into string mg24 2 2,424 Oct-06-2022, 08:13 AM
Last Post: DeaD_EyE
  USE string data as a variable NAME rokorps 1 993 Sep-30-2022, 01:08 PM
Last Post: deanhystad
  Removing Space between variable and string in Python coder_sw99 6 6,393 Aug-23-2022, 01:15 PM
Last Post: louries
  Remove a space between a string and variable in print sie 5 1,847 Jul-27-2022, 02:36 PM
Last Post: deanhystad
  Split string using variable found in a list japo85 2 1,336 Jul-11-2022, 08:52 AM
Last Post: japo85
  Convert string to float problem vasik006 8 3,480 Jun-03-2022, 06:41 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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