-1

Frankly, it's easy to forget the name of some property and sometimes it is difficult to enter the property name accurately.

How do I do the following thing using python from ubuntu terminal after I enter Python Interpreter

python2
.... enter keras learning model
model = Sequential()
model.a tab tab i want sth to come out here

(1) use tab for autofill (similar to ubuntu terminal)

(2) after typing a letter show possible/recent selected property and variable

(3) show method and property of a variable without typing a letter

and many other helpful functions that can accelerate the coding

Dr Yuan Shenghai
  • 1,849
  • 1
  • 6
  • 19

1 Answers1

0

As Julio P.C. point out

native python interpreter will not work. But iPython with a few more actions will do the job

Dr Yuan Shenghai
  • 1,849
  • 1
  • 6
  • 19