This is my code for bot-card game.
card_5 = 3 #all variable names
card_6 = 4
card_7 = 5
card_8 = 6
player_card_list = [card_5,card_6,card_7,card_8]#list of variables
min_player_card = int(min(player_card_list))#i want this variable to print the variable name
max_player_card = int(max(player_card_list))