Josh Cogliati - Non-Programmers Tutorial For Python (779876), страница 11
Текст из файла (страница 11)
There are several translations that I know of.One is in korean and is available at: http://home.hanmir.com/ johnsonj/easytut/easytut.html.Another is in Spanish and at: http://www.honors.montana.edu/ jjc/easytut/easytut es/.Another is in italian and isavailable at http://www.python.it/doc/tut begin/index.html.Another is in Greek and available athttp://www.honors.montana.edu/ jjc/easytut/easytut gr/.Another is in Russian and is available athttp://www.honors.montana.edu/ jjc/easytut/Easytut Russian/ Several people have said they are doing a translation in other languages such as French, but I never heard back from them.
If you have done a translation orknow of any translations, please either send it to me or send me a link.How do I make a GUI in Python? You can use either TKinter at http://www.python.org/topics/tkinter/ or WXPythonat http://www.wxpython.org/How do I make a game in Python? The best method is probably to use PYgame at http://pygame.org/How do I make an exectable from a Python program? Short answer: Python is an interepreted language so thatis impossible. Long answer is that something similar to an executable can be created by taking the Pythoninterpreter and the file and joining them together and distributing that. For more on that problem seehttp://www.python.org/cgi-bin/faqw.py?req=all#4.28I need help with the exercises Hint, the password program requires two variables, one to keep track of the numberof times the password was typed in, and another to keep track of the last password typed in.
Also you candownload solutions from http://www.honors.montana.edu/˜jjc/easytut/What and when was the last thing changed? 2000-Dec-16, added error handling chapter.2000-Dec-22, Removed old install procedure.832001-Jan-16, Fixed bug in program, Added example and data to lists section.2001-Apr-5, Spelling, grammar, added another how to break programs, url fix for PDF version.2001-May-13, Added chapter on debugging.2001-Nov-11, Added exercises, fixed grammar, spelling, and hopefully improved explanations of some things.2001-Nov-19, Added password exercise, revised references section.2002-Feb-23, Moved 3 times password exercise, changed l to list in list examples question.
Added a newexample to Decisions chapter, added two new exercises.2002-Mar-14, Changed abs to my abs since python now defines a abs function.2002-May-15, Added a faq about creating an executable. Added a comment from about the list example. Fixedtypos from Axel Kleiboemer.2002-Jun-14, Changed a program to use while true instead of while 1 to be more clear.2002-Jul-5, Rewrote functions chapter.
Modified fib program to hopefully be clearer.2003-Jan-3, Added average examples to the decisions chapter.2003-Jan-19, Added comment about value of a var. Fixed mistake in average2.py program.2003-Sep-5, Changed idle instruction to Run-¿Run Module.84Chapter 18. FAQ.