Answers for "python variable from one function to another"

2

how to access variable of one function in another function in python

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

def fun2():
    print(fun1.var)

fun1()
fun2()

print(fun1.var)
Posted by: Guest on May-31-2021
0

how to use variable from another function in 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=" ")
Posted by: Guest on November-26-2020

Code answers related to "python variable from one function to another"

Python Answers by Framework

Browse Popular Code Answers by Language