What is the workaround for "Unexpected Indent" error from this?
In [15]: def f(x): 
    ...:     return x 
    ...:                                                                                                                                                        
In [16]: for i in range (10): 
    ...:     exec(f""" 
    ...:     v_{i} = f(i) 
    ...:     """) 
 
     
     
    