+ 3
Coding python in code playground -Solo learn
Hi, I'm a python beginner too. Can I write python on my phone using the code playground in Solo learn? If yes, when I do, I created a list below. but i cant view my list in the output when i just run. i only see the contents of my list when i do a print and the [ ] are also displayed. thanks sample code below https://code.sololearn.com/cr0z98LA46WW/?ref=app
4 Answers
+ 8
You should remove line number 2 so it should be:
a_list=[124, "fish", "another fish"]
print(a_list)
+ 2
# Created by VicTheGreat
a_list=("124"", " "fish"", " "another fish")
print(a_list)
I m not sure.... I am noob
+ 1
Yes u can
But
Install this one
https://play.google.com/store/apps/details?id=ru.iiec.pydroid3
Or Termux
apt install python
0
Thanks everyone. I learned my lesson.