Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 947 Vote(s) - 3.48 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python for beginners | Getting inputs

#1
Getting user inputs is an essential part of a program. In python we have several ways to get inputs like direct keyboard , arguments, environment variables etc. In this document I'll explain about keyboard inputs and arguments.
Input functions
First let's talk about input() functions. In python 2.x version there are two input functions called input() and raw_input(). But python 3.x only use input() function. There is no raw_input() function. Any way we want to learn about both of those two versions. Now I write a simple program to demonstrate input process.


Hidden Content
You must

[To see links please register here]

or

[To see links please register here]

to view this content.


First I used raw_input() function to get a word from user. We have used str() function hear. What it does? It convert what ever found as a argument to a string. Actually raw_input() function output a string . But it is good programming practice . So whenever you get a input convert it into the type you want. OK next we use input() function. This one will get input from user and try to interpret it as a valid python code .I use int() function to convert user-input to an integer. Finally we ran the program with python 2.x interpreter. You can see that works fine. Now we can't use raw_input() for python 3.x version. So we used input() function for both strings and integers. When we want to input an integer we want to use int() function. As well as if we expect a string from user we use str() function . Let's make a quick short summary of all of those. python 2.x uses input() and raw_input(). python 3.x uses only input() . Its good to use str() , int() and float() to convert input.
Using arguments
Now we are going to see how we can use arguments in our programs. Do you have used tools like SQLMap , nmap, dirb etc. Then you give arguments to those programs while run them. Like following. nmap -sv 192.168.56.101 Hear is our little script.


Hidden Content
You must

[To see links please register here]

or

[To see links please register here]

to view this content.


You can see , it's working g fine on both python versions. There are some points to note. First you can see we use a special command "import". Those are related with modules (or libraries) . from sys import argv We say import argv function from the module sys. We will talk more about this in a later tutorial. Yes when we calling the program we supplied some arguments. python tmp1.py Thilan Danushka Python think all things after the word 'python' are arguments so it thinks all these three strings ('tmp1.py' , 'Thilan' , 'Danushka' ) are arguments. :-). All of our argument string will save in a array called argv. So in our program we extract those from argv. Next there is a command. x,y,z = argv Hear we get arguments from argv and assign them to variables called x,y and z. So variable x will contain the string 'tmp1.py' , Also 'Thilan' is in y and variable z contains the string 'Danushka' . Next we can print them or do what ever we want with those arguments. You can't assume user always input what you expect. He/she may enter a string while you say to enter an integer. So if you try to convert a string to integer it will throw an error and program will give unexpected results. Hear something to clear up. I said if program try to convert a string to integer it'll lead to an error. Then what happen when we use int() function? think about following example. x = '2' y = 'dummy_string' Hear both of variable x and y are strings. But we can covert x into a integer using int(x). What happen if we try to convert y into a integer?


Hidden Content
You must

[To see links please register here]

or

[To see links please register here]

to view this content.


To avoid this we want to use expectations and error handling. I'll explain this in another tutorial. Thanks for reading.
Thank you for reading.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through