0
Tody is my first day on solo learn. Which course should I start first ? I don't know anything about coding. So please help me.
10 Answers
+ 8
Welcome to sololearn ๐
But please search before asking question. There is a search box avilable at the top of q/a section
If you want to become a web developer see there is a caption in learn section "become a web developer " learn every lesson given in it .
Or you can use other languages like python programming , php,java etc.
+ 4
Ayush Singh
You must have started coding due to an reason ,you must have something in your mind what you want to do in future,
If you have just started as a hobby or something i will suggest to start with Python or go with HTML which will lead you in web development
+ 2
Python is easier then C to learn. here a tip, In python indentation matters. its equivalent to Cs { ... } or "begin ... end" pairs in Algol, PL1, and others. Also if the previous line of python ends in a":" then the next line is indented one more level. all the other statements in that block have the same level of indentation. the first line not in the block is un-indented one level. Do not mix tabs and spaces while doing indentation!!
#here's simple example
#print 5 numbers from 0 to 4
for i in range(0,5):
print(i)
Print( "all done")
#... here's the output ...#
0
1
2
3
4
all done
+ 1
Python would be a good place to start. Also there are some introductory courses in the basic fundamentles concepts programming and using a computer to solve problems. Take a good look at the silolearn coarse catalog. The coarse "Tech for Everyone" would also be a good first coarse.
Rick
0
Thanks everyone
0
isadora iurato thanks for answering bro
Though i have learned many things now, I admire you replied to a very old question