I was exploring the tutorial notebooks and while working on Python Interoperability notebook, the very first block of code to import Python caused following error:
```
error: <Cell 4>:2:1: error: unexpected conditional compilation block terminator
#else
^
error: <Cell 4>:4:1: error: unexpected conditional compilation block terminator
#endif
^
```
I don't how this worked but I literally typed the same code in a new block
#if canImport(PythonKit)
import PythonKit
#else
import Python
#endif
print(Python.version)
and it worked. I'm guessing there might be some indentation issue.
I'm new here. So please let me know whether this is the right place to share code errors and should I create new topic when any relevant discussion is not found?