Python, algunos ejemplos

From Wiki de Caballero
Revision as of 21:37, 6 March 2018 by Felipe (talk | contribs) (Created page with "==Python 3== ===execfile en Python 3=== <source lang="python"> # En vez de # execfile("./filename") exec(open("./filename").read()) </source> Category:Python")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Python 3

execfile en Python 3

# En vez de
#  execfile("./filename") 
exec(open("./filename").read())