![]() |
|
my god.. why.. - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Python (https://sinister.ly/Forum-Python) +--- Thread: my god.. why.. (/Thread-my-god-why) |
my god.. why.. - Inori - 03-06-2014 ughhhhhh.. I'm ok with batch and meh with javascript but why is python so complicated? My ADHD can't keep up! I tried to teach myself a bit and I got pissed so I made this..
RE: my god.. why.. - Ligeti - 03-06-2014 Python is complicated? ... Then, try something else! How about C? ![]() I like your art work though! Keep it up! Thanks RE: my god.. why.. - Inori - 03-06-2014 Thanks @Legiti I've been thinking about C and related codes for a while. Might as well get on it.
RE: my god.. why.. - mls577 - 03-06-2014 (03-06-2014, 12:10 AM)w0lf Wrote: ughhhhhh.. I'm ok with batch and meh with javascript but why is python so complicated? My ADHD can't keep up! not sure why it seems complicated to you? python is wonderful. it's implicit, portable, and just all around easy to use. just my opinion of course, but what seems to be the trouble? RE: my god.. why.. - Legolas - 03-06-2014 @"w0lf" Is Python complicated? No.LOL! I would say that is one of the most easy language to be learned. I see that you are 13 Years old.(when i started to learn and code) I would suggest you: Do not start with C. Start with VB.net or Html if you interest about Web Development,so that in the future continue with Php and Mysql. And LOL! Python is Not difficult. -Legolas- RE: my god.. why.. - pixle_ - 03-06-2014 Was that sarcasm? Python could be much more simplistic that C. Honestly try to learn Python from codeacademy, its 101% recommended by me! pixle_ RE: my god.. why.. - Inori - 03-06-2014 (03-06-2014, 01:19 AM)Legolas Wrote: @"w0lf" (03-06-2014, 01:20 AM)pixle_ Wrote: Was that sarcasm? Python could be much more simplistic that C. Honestly try to learn Python from codeacademy, its 101% recommended by me! thanks guys for some reason my brain gets fried when I'm looking at python but I can look at C after learning JS and be like 'oh, I know some of this! The one time school is useful!'
RE: my god.. why.. - PrimeD - 03-06-2014 (03-06-2014, 01:38 AM)w0lf Wrote:I understand your frustration. I could not just pound through a book and do the exercises. My attention would wonder and I was not really learning anything. So I started making a little madlib program for my kids and it helped my reenforce the basics that I was getting from a book and EXo's tutorial.(03-06-2014, 01:19 AM)Legolas Wrote: @"w0lf" I tried C before, python is easier for me to learn. RE: my god.. why.. - Spirit - 03-10-2014 Vouching for @pixle_'s recommendation. @"w0lf", try using CodeCademy. I just started using it and I literally just made my first script. My script's pretty useless, but it still taught me some of the basics! My script: Code: #This is a comment
"""This is
a multilined
comment"""
#PracticeTest1
my_string1 = "Welcome to my first script! "
my_string2 = "I actually like pie rather than "
my_string3 = "pi (as in "
print my_string1
print my_string2 + my_string3 + str(3.14) + "!)"
name = raw_input("What is your name? ")
foodnum = raw_input("Is pie a food or number? ")
why = raw_input("Why is pie a food? ")
print "Ah, so pie is a %s because %s! " \
"Thank you for teaching me, %s!" % (foodnum,why,name)Trust me! Give it another shot on CodeCademy! It's easy! :Smile: |