Skip to content

Instantly share code, notes, and snippets.

@bussiere
Created October 26, 2010 08:03
Show Gist options
  • Save bussiere/646512 to your computer and use it in GitHub Desktop.
Save bussiere/646512 to your computer and use it in GitHub Desktop.
my file of test
"""
string = "tététététété"
print(string)
print("*"*2)
import os
a = 7
b = a
a = a -1
c = {'test':'titi'}
b = c.copy()
del c['test']
print (c)
print (b)
list = []
list.append("a")
list.append("a")
print(list)
print(list.count("a"))
strin = """UPDATE Parole SET Réponse = "Effectivement" WHERE Interlocuteur = "QCTX"; """
resultat = ""
for s in strin:
resultat=s+resultat
print(resultat)
print os.path.abspath(".")
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment