11 February 2010, 12:26 am
Paulo Silveira Sao muitas as linguagens que hoje em dia rodam sobre a JVM. Qual a vantagem disso? Todo o poder do hotspot e do JIT, que veremos sendo acionados, podem ser utilizados em uma aplicação Ruby on Rails, por exemplo. Mais do que ter as opções, é pode usar cada linguagem em um cenário... Read More »
2 November 2009, 10:14 am
Discuss this video at forum.irakrakow.com and network with other Blender 3D users. Read the text of this tutorial at blender3dvideos.blogspot.com In addition to everything else, Blender is a programming environment, with Python its language of choice. Even if you don't plan on creating Python script... Read More »
17 September 2009, 6:22 am
Screen Cast on Using notepad++ To Edit and Run Python Programs on Windows. We install and use notepad++ to create Python programs which we run in the command line interface. We make a small error in the program and then correct it and rerun the program as well as talking about the features of notepa... Read More »
17 September 2009, 5:54 am
This video desmonstrates how to use textwrangler to develop Python programs on the Macintosh. We install textwrangler and create a simple Python program and running the program. We even make and correct a syntax error.... Read More »
13 September 2009, 9:19 am
How to make a circumference of circle finder in python. Code:print "****Circumference**Of**Circle**Finder****" print "For Diameter, Press 1. For Radius Press 2." while 1: x = raw_input("1 or 2: ") if x == "1": D = input("Diameter: ") C = D*3.14 print C print "________________________________________... Read More »
1 September 2009, 5:45 pm
Title Says It All. The Code For This is: print "For Fahrenheit to Celsius, Press 1. For Celsius To Fahrenheit, Press 2." x = raw_input("1 or 2: ") if x == "1": F = input("Fahrenheit: ") C = (F - 32)*5/9 print C elif x == "2": C = input("Celsius: ") F = C*9/5 + 32 print F... Read More »
26 April 2009, 1:42 pm
Part 33 - www.youtube.com OOP or the famous object oriented program. Hold on guys, the waters getting rough!... Read More »
18 April 2009, 8:37 pm
Part 6 - www.youtube.com How to actually save your program in python.... Read More »
13 April 2009, 8:50 am
READ ME: in this video is my first program that i have ever coded. it is a converter which converts british pounds to US dollars and US dollars to british Pounds! i did this with the great tutorials that are on youtube now! it did take me about 1-2 hours!... Read More »