Difference between revisions of "Python, algunos ejemplos"

From Wiki de Caballero
Jump to navigation Jump to search
(Created page with "==Python 3== ===execfile en Python 3=== <source lang="python"> # En vez de # execfile("./filename") exec(open("./filename").read()) </source> Category:Python")
(No difference)

Revision as of 21:37, 6 March 2018

Python 3

execfile en Python 3

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