Hi I am very new to Python and I have been learning to create a Blackjack game. I want to print the cards on the same row, instead of on a new line each time. How should I go about doing this?
[Current Output] [1]: https://i.stack.imgur.com/B7ELY.png
Code for output is below:
def show(self):
print('┌───────┐')
print(f'| {self.value:<2} |')
print('| |')
print(f'| {self.suit} |')
print('| |')
print(f'| {self.value:>2} |')
print('└───────┘')