Eventually, we want interactivity when executing Python script. We want user to give input for some variable. It'll useful for, lets call, application form where user have to input her/his name, age, etc. On math field, user will have flexibility to input the function and range of variable used to computation.



There is raw_input command and input command we can used.

raw_input command will translate all we type to string, while input command treat it as command

Here difference between the two

raw_input
x=raw_input('type anything \n')
print 'you typed ', x

Execute it

Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
a
you typed  a
Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
12
you typed  12
Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
sin(x)+x**2   
you typed  sin(x)+x**2
Nugrohos-MacBook-Pro:python nugroho$ 

input
c='sin(x)+x**2'
me='Hello folks, Aravir here'
x=input('type anything \n')
print 'you typed ', x 

Execute it
Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
a
Traceback (most recent call last):
  File "input.py", line 3, in 
    x=input('type anything \n')
  File "", line 1, in 
NameError: name 'a' is not defined
Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
12
you typed  12
Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
sin(x)+x**2   
Traceback (most recent call last):
  File "input.py", line 3, in 
    x=input('type anything \n')
  File "", line 1, in 
NameError: name 'sin' is not defined
Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
c
you typed  sin(x)+x**2
Nugrohos-MacBook-Pro:python nugroho$ python input.py 
type anything 
me
you typed  Hello folks, Aravir here
Nugrohos-MacBook-Pro:python nugroho$ 
0

Add a comment

Layang Kangen

via IFTTT

Sing Sing Sing

via IFTTT

Layang Kangen.

Rayuan Pulau Kelapa.

Birama ganjil di pagi hari, 😁.

Manuk Dadali

via IFTTT

Killing Me Softly

via IFTTT

Tears in Heaven.

Ritual Drummer Normal saat ingin memainkan set drum saya.

Uptown Funk.

Let It Go. Versi Idina Menzel.

Tuntun Kan Ku Dalam Damai. Lagu mas Mamat.

Dapat hadiah lomba joget, 😁

via IFTTT

Cicilan lagu baru mas Mamat, 😁

via IFTTT
1

Mulai mengisi, 😁

via IFTTT

Can’t Help Falling in Love with You.

Lilin-lilin Kecil

via IFTTT

Viva la Vida

via IFTTT

Belum punya energi untuk menambah part bass/keyboard, 😁

via IFTTT
Archive
Label
Popular Posts
Popular Posts
Loading