1

I want to import something like this

from x import t as b
from x import u as c

Is there a way to use a single from x to achieve the same effect

Emmanuel Mtali
  • 4,383
  • 3
  • 27
  • 53

1 Answers1

3

The following works:

from x import t as b, u as c
scnerd
  • 5,836
  • 2
  • 21
  • 36