Simply create 3 spaces in every print function,
for example:
human = input(' Human, choose rock, paper, or scissors: ')
or
print(f' Computer chooses {computer}')
or
print(' Tie')
Similarly, place spaces in every sentence you want it to be indented.
Format function can be used to do so.
Hope this helps!