Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,971 questions

51,913 answers

573 users

How to convert from a list to JSON string in Python

1 Answer

0 votes
import json

lst = ["python", "java", "c++"]

jsn = json.dumps(lst)

print(jsn)

print(jsn[0])
print(jsn[1])
print(jsn[2])
print(jsn[3])

print(type(jsn))
print(type(lst))


'''
run:

["python", "java", "c++"]
[
"
p
y
<class 'str'>
<class 'list'>

'''

 



answered Nov 24, 2018 by avibootz

Related questions

1 answer 220 views
1 answer 114 views
1 answer 137 views
1 answer 137 views
1 answer 168 views
1 answer 200 views
1 answer 202 views
...