“Cómo usar la variable de otra función en Python” Código de respuesta

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=" ")
Obedient Osprey

Cómo usar la variable de otra función en Python

def fun1():
    fun1.var = 100

def fun2():
    print(fun1.var - 10)

fun1()
fun2()
the hacker man

Cómo acceder a la variable de una función en otra función en Python

def fun1():
    fun1.var = 100
    print(fun1.var)

def fun2():
    print(fun1.var)

fun1()
fun2()

print(fun1.var)
Indian Coder Jr.

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=" ")
Obedient Osprey

Respuestas similares a “Cómo usar la variable de otra función en Python”

Preguntas similares a “Cómo usar la variable de otra función en Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código