+ 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..
3 odpowiedzi
+ 2
list(list1)
0
str1= ''.join(list1)
str1
- 1
here it is...
2 methods r included
https://code.sololearn.com/cO2e06AluL1H/?ref=app