Alert icon
We're changing our privacy policy. This stuff matters.  Learn more  Dismiss

Python Programming for absolute beginners - 1 (2 of 2)

Loading...

Sign in or sign up now!
Alert icon
Upgrade to the latest Flash Player for improved playback performance. Upgrade now or more info.
4,696
Loading...
Alert icon
Sign in or sign up now!
Alert icon

Uploaded by on Nov 12, 2008

Go ahead and expand this.
This is Video #2
First off, here is the link to python 3.0
http://www.python.org/ftp/python/3.0/python-3.0rc2.msi

I'm losing my internet soon I suspect, and I could not sleep. So I made this video, and the second part. It doesn't go really in depth, and it is designed for those of you that feel overwhelmed when trying to learn to program. It took me over a year before I understood half the things I was reading and trying, so dont be discouraged.
Go ahead and let me know what you think. If the movie was boring at all, anything of the sort. I'm a horrible speaker, and my microphone is from the early 90's. So I was being nice with the text ^_^
So I had filmed over 45 minutes, and I managed to cut it down to 20 minutes. Haha, and without cutting any content.
It's my first try at creating a video.
I was going to do a nifty snake in 3d but it proved to be too time consuming.
I used audacity for editing the sound and adding in the "beat" at the beginning.
Songs:
Led Zepplin - Stairway to Heaven
Styx - Come sail away
David Bowie - Ground Control

Anyways let me know what you think, and watch both movies

Category:

Howto & Style

Tags:

License:

Standard YouTube License

Link to this comment:

Share to:

Uploader Comments (subfuzion)

  • Hi subfuzion, thanks for uploading both videos i am a complee beginer and hopefully i can learn this. i was wondering 2 things: 1) is the tools you ahve covered e.g. variable, if's, print, output etc.. all that is needed to create anthing in python?

    2) supposedly one creates a programme like lets say ordering food of the net or something how would you upload the finished programme to be used on the net?

    anyway i appreate th help. thanks

  • @isytown The tools presented in the videos are not all that is required, they are mearly a place to start off for those new to programming. The majority of programming is a self exploration and research thing, if my opinion counts.

    Python programs are shared as the .py extension. Python is a scripting language, and that fact doesn't really natively allow you to make distrobution easy. Course there are ways around that, but they are hack jobs for the most part.

    Best method is file sharing site

  • How can you use variables as numbers and not text? So for example if you write:

    x = input("first number:")

    y = input("second number:")

    z = (x + y)

    print("first plus second is: " )

    print (z)

    It will treat the numbers as text instead of numbers. Is there a command to overrun this?

  • Well for one, for a text string to be treated as a number it has to be a number value, ie 0-9.

    soo if:

    x = 100

    y = space

    z = 9

    print(x+y)

    print(y+x+z)

    print(y+(int(z)+int(x)))

    I don't have python to test this wacky example, but just look up datatypes in python on google.

  • Thanks :) Really helpful video by the way. Any chance of seeing more?

  • Bah i don't know. I havn't touched python in quite a while, mostly exploring lua-commanded engines

see all

All Comments (22)

Sign In or Sign Up now to post a comment!
  • fail u wrote 10/1=1

  • nevermind, I got it now..Don't us the variables...thanks soo much.. i learned a lot, and nice choice of music btw

  • You have to use the variables from the beginning...at least that's what i did and it worked perfaect

  • Ok, this is a very very late reply, and you probably have figured it out by now, but....

    You have many errors. First, if you put

    x = raw_input("Enter your age: ")

    at the top, than your variable would be called x, not age.

    Second, instead of the print's you tried, which wouldn't work for reasons we won't go into, you'll want to try this:

    print(int(x)/2*3)

    Everything is all one 'word' if you could say that.

Loading...
Alert icon
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more