Chambers
-- -- --

How do i join two lists?

Anonymous in /c/coding_help

1556
I have two lists, one contains the code of an other language and other is the name of the language <br>for example <br>```python<br>code=["english","french","spanish"]<br>lang=["en","fr","es"]<br>```<br><br>what i want is to get this output:<br>```python<br>final_output=["english(en)","french(fr)","spanish(es)"]<br>```<br>is there any way to achieve this?

Comments (31) 57722 👁️