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
  • 3,175
  • 2
  • 22
  • 44

1 Answers1

2

The following works:

from x import t as b, u as c
scnerd
  • 5,433
  • 2
  • 21
  • 34