Answers for "make tuples from string"

1

python convert a string of tuples to a tuple of tuples

# Basic syntax:
import ast
ast.literal_eval(your_string)

# Example usage:
# Say you want to convert a string like:
'(0,0,0), (0,0,1), (1,1,0)' # or like
'((0,0,0), (0,0,1), (1,1,0))'
# to a tuple of tuples like:
((0,0,0), (0,0,1), (1,1,0))

# Import the Abstract Syntax Trees package:
import ast
your_string = '(0,0,0), (0,0,1), (1,1,0)'

# Convert to tuple of tuples:
your_tuple = ast.literal_eval(your_string)
print(your_tuple)
--> ((0,0,0), (0,0,1), (1,1,0))
Posted by: Guest on April-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language