This is my test post
write content here Google
New HTC mobile
cool?
def foo()👍
pass
list here
- one
- two
- three
- a
- b
- c
- four
- five
- six
- d
- e
- f
deleted
del
write content here Google
New HTC mobile
cool?
def foo()👍
pass
list here
deleted
del
leave a reply here
leave a reply here
✋
Cheers! 🍻
Testing again:
#!/usr/bin/python
import MySQLdb
db = MySQLdb.connect(host="localhost", # your host, usually localhost
user="john", # your username
passwd="megajonhy", # your password
db="jonhydb") # name of the data base
# you must create a Cursor object. It will let
# you execute all the queries you need
cur = db.cursor()
# Use all the SQL you like
cur.execute("SELECT * FROM YOUR_TABLE_NAME")
# print all the first cell of all the rows
for row in cur.fetchall():
print row[0]
db.close()