PostgreSQL, Ruby, Python คืออะไรครับ

darkburn

New member
PostgreSQL, Ruby, Python คืออะไร ช่วยอธิบายให้เช้าใจหน่อยครับ
 

PlAwAnSaI

Administrator

Python

Code:
https://www.python.org/downloads/release/python-2710




Code:
https://vimeo.com/channels/learnpython


Hello World.py


Code:
print "Hello World!";


C:python27>python 00-hello.py



Code:
http://www.dotnetperls.com/fibonacci-python




Code:
https://sites.google.com/site/dotpython/input-and-output/2-2-list




Code:
http://eayd.in/?p=273




Code:
http://stackoverflow.com/questions/19671936/telnet-cisco-switch-using-python


  1. An abstract class exists only so that other 'concrete' classes can inherit from the abstract class.
  2. .pop() method
    built-in list method would use to remove items from a list.
  3. class Game(LogicGame): pass
    for defining a class called 'Game', it inherits from a parent class called 'LogicGame'.
  4. The built-in all() function returns True if all items in the list evaluate to True. Otherwise, it returns False.
  5. A Game class inherits from two parent classes: BoardGame and LogicGame. An instance of the Game class will inherit whatever methods the BoardGame and LogicGame classes have.
  6. 'self' keyword when defining or calling methods on an instance of an object refers to the instance whose method was called.
  7. def _init_(self):
    pass
    for defining an _init_() method that takes no parameters.
  8. # This is how a comment created.
cool.gif
 

darkburn

New member
ขอวิธีการใช้งานอย่างละเอียด

ขอบคุณครับ
 

PlAwAnSaI

Administrator
รอคนใจดีแวะมาตอบคับ
bigsmile.gif

PostgreSQL คลอดเบต้าใหม่เวอร์ชั่น 8.3


Code:
http://www.blognone.com/node/6064

 
Top