Ejemplo 1: cómo usar la variable de otra función en Python
s = Spam()
s.oneFunction(lists)
s.anotherFunction()
Ejemplo 2: cómo usar la variable de otra función en Python
>>> def oneFunction(lists):
category=random.choice(list(lists.keys()))
return random.choice(lists[category])
>>> def anotherFunction():
for letter in oneFunction(lists):
print("_",end=" ")
Ejemplo 3: cómo usar la variable de otra función en Python
class Spam:
def oneFunction(self,lists):
category=random.choice(list(lists.keys()))
self.word=random.choice(lists[category])
def anotherFunction(self):
for letter in self.word:
print("_",end=" ")
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)