Write a Python code to print the list below as "PYTHON3" without quotes . list1 = ['P', 'N', 'Y', 'H', 'O', 'T', 3] | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Write a Python code to print the list below as "PYTHON3" without quotes . list1 = ['P', 'N', 'Y', 'H', 'O', 'T', 3]

Let's See who does it..

6th Sep 2017, 4:06 AM
Amit Joshi
Amit Joshi - avatar
3 Answers
+ 2
list(list1)
6th Sep 2017, 7:50 AM
Abdur-Rahmaan Janhangeer
Abdur-Rahmaan Janhangeer - avatar
0
str1= ''.join(list1) str1
7th Sep 2017, 4:38 AM
Ratnesh Srivastava🇮🇳
Ratnesh Srivastava🇮🇳 - avatar
- 1
here it is... 2 methods r included https://code.sololearn.com/cO2e06AluL1H/?ref=app
6th Sep 2017, 4:40 AM
sayan chandra
sayan chandra - avatar