Hello All!
I'm new to Python
Trying to understand how classes work around, i'm trying to use a method that is in another class from a different file.
Note: I'm using Pycharm and i created a simple project, both files are in the same folder.
Any ideas on how to access classB methods??
Eg:
File1.py
from File2 import classB
classA:
my_object = classB()
my_object.showGreeting()
File2.py
classB:
def showGreeting(self):
print("Welcome!!!")
I'm new to Python

Trying to understand how classes work around, i'm trying to use a method that is in another class from a different file.
Note: I'm using Pycharm and i created a simple project, both files are in the same folder.
Any ideas on how to access classB methods??
Eg:
File1.py
from File2 import classB
classA:
my_object = classB()
my_object.showGreeting()
File2.py
classB:
def showGreeting(self):
print("Welcome!!!")