0
đđđđPython down, Javascript next to go.đđđđ Is this a right step?
9 Respostas
+ 4
try python first it is easy
+ 4
Python is a high-level programming language, with applications in numerous areas, including web programming, scripting, scientific computing, and artificial intelligence.
It is very popular and used by organizations such as Google, NASA, the CIA, and Disney.
+ 3
I don't think so...
you should go to html,css then javascript
+ 2
@Elizabeth, Yes, you are right. I started with CSS, moved to HTML. I wanted to go for Javascript but thought I should do python, to see for myself what it's all about.
Now, I've seen it. I wouldn't say it doesn't worth the hype. Neither would I say: it was over-hyped...with my knowledge and projects in Visual Basic.net, I would say: not just my kind of Language...my opinion, though.
Now, straight to JavaScript.
+ 2
Eliza hi,I would like to do programming,am I going to start with c_programming
+ 2
okay what's about Python?
+ 1
My favourite comment in Python course.
For i in Range(10)
try:
if 10/i==2:
break
except ZeroDivisionError:
print(1)
else
print(2)
Solution:
Range(10)=0,1,2,3,4,5,6,7,8 and 9.
In the code, the program breaks only when 10/i==2, which is 5. Therefore, the program will run from 0 to 4.
And, if a division by zero, print 1 else print 2.
So,
for i=0, output= 1
for i=1, output=2
for i=2, output=2
for i=3, output=2
for i=4, output=2
Therefore, the sum of numbers printed by the code= 1+2+2+2+2=9.
+ 1
@bamgbose
đđđđ
"Not your kind of language..."
0
okay I will try