й
test_string = f'Hello {name}'
def get_counts(name):
print(f'Hello {name}')
print(test_string)
get_counts('Vasya')
Traceback (most recent call last):
test_string = f'Hello {name}'
NameError: name 'name' is not defined
Process finished with exit code 1
