تبدیل رشته به دیکشنری در پایتون
# Python3 code to demonstrate working of
# Convert String to tuple list
# using loop + replace() + split()
# initializing string
test_str = "(۱, ۳, ۴), (۵, ۶, ۴), (۱, ۳, ۶)"
# printing original string
print("The original string is : " + test_str)
# Convert...