I am pretty new to python/esp pycharm and some of its popular packages, but I"m not sure why the below code won't return the pandas dataframe that I intended for. For background, I downloaded a poker dataset but when I return the code shown I just don't get any output. Any help would be appreciated:
import pandas as pd
import numpy as np
def print_poker_hand_testing_data():
poker_hand_data = pd.read_fwf("/Users/satbi/PycharmProjects/poker_analyzer/venv/poker data/poker-hand-testing.data")
print(poker_hand_data.to_string())
def print_poker_hand_training_true_data():
poker_hand_training = pd.read_fwf("/Users/satbi/PycharmProjects/poker_analyzer/venv/poker data/poker-hand-training-true.data")
print(poker_hand_training.to_string())
if __name__ == '__main__':
print_poker_hand_testing_data()