I tried running the code below in Jupyter served online:
term_no = input('Enter number of approximations to use: ')term_no = int(term_no)print(term_no)
and it returns an error TypeError: int() argument must be a string, a bytes-like object or a real number, not 'PyodideFuture'
There's no error when I run this in VS code. Is there a bug with Jupyter or should I add something extra?