Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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=" ")
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #variable #function #python
ADD COMMENT
Topic
Name
8+4 =