Python Interview Questions
Python Interview Questions
What is Python?
PYTHONPATH − It has a role similar to PATH. This variable tells the Python
interpreter where to locate the module files imported into a program. It should include
the Python source library directory and the directories containing Python source code.
PYTHONPATH is sometimes preset by the Python installer.
Numbers
String
List
Tuple
Dictionary
What is the output of print str if str = 'Hello World!'?
It will print characters starting from 3rd to 5th. Output would be llo.
It will print characters starting from 3rd character. Output would be llo World!.
What is the output of print str * 2 if str = 'Hello World!'?
It will print string two times. Output would be Hello World!Hello World!.
What is the output of print list if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
It will print concatenated lists. Output would be [ 'abcd', 786 , 2.23, 'john', 70.2 ].
What is the output of print list[0] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
What is the output of print list[1:3] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
It will print elements starting from 2nd till 3rd. Output would be [786, 2.23].
What is the output of print list[2:] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?
It will print elements starting from 3rd element. Output would be [2.23, 'john',
70.200000000000003].
It will print list two times. Output would be [123, 'john', 123, 'john'].
What is the output of print list + tinylist * 2 if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]
and tinylist = [123, 'john']?
It will print concatenated lists. Output would be ['abcd', 786, 2.23, 'john', 70.2, 123,
'john', 123, 'john'].
A tuple is another sequence data type that is similar to the list. A tuple consists of a
number of values separated by commas. Unlike lists, however, tuples are enclosed
within parentheses.
It will print elements starting from 2nd till 3rd. Output would be 786,2.23786,2.23.
Python's dictionaries are kind of hash table type. They work like associative arrays or
hashes found in Perl and consist of key-value pairs. A dictionary key can be almost
any Python type, but are usually numbers or strings. Values, on the other hand, can be
any arbitrary Python object.
How will you create a dictionary in python?
Dictionaries are enclosed by curly braces and values can be assigned and accessed
using square braces [][].
dict = {}
dict['one'] = "This is one"
dict[2] = "This is two"
tinydict = {'name': 'john','code':6734, 'dept': 'sales'}
How will you get all the keys from the dictionary?
Using dictionary.keys function, we can get all the keys from the dictionary object.
Using dictionary.values function, we can get all the values from the dictionary object.
How will you convert a single character to its integer value in python?
// Floor Division − The division of operands where the result is the quotient in which
the digits after the decimal point are removed.
is − Evaluates to true if the variables on either side of the operator point to the same
object and false otherwise. x is y, here is results in 1 if idxx equals idyy.
not in − Evaluates to true if it does not finds a variable in the specified sequence and
false otherwise. x not in y, here not in results in a 1 if x is not a member of sequence
y.
break statement − Terminates the loop statement and transfers execution to the
statement immediately following the loop.
continue statement − Causes the loop to skip the remainder of its body and
immediately retest its condition prior to reiterating.
pass statement − The pass statement in Python is used when a statement is required
syntactically but you do not want any command or code to execute.
random − returns a random float r, such that 0 is less than or equal to r and r is less
than 1.
How will you set the starting value in generating random numbers?
seed[x][x] − Sets the integer starting value used in generating random numbers. Call
this function before calling any other random module function. Returns None.
How will you check in a string that all characters are alphanumeric?
isalnum − Returns true if string has at least 1 character and all characters are
alphanumeric and false otherwise.
How will you check in a string that all characters are digits?
isdigit − Returns true if string contains only digits and false otherwise.
How will you check in a string that all characters are in lowercase?
islower − Returns true if string has at least 1 cased character and all cased characters
are in lowercase and false otherwise.
How will you check in a string that all characters are numerics?
isnumeric − Returns true if a unicode string contains only numeric characters and
false otherwise.
How will you check in a string that all characters are whitespaces?
isspace − Returns true if string contains only whitespace characters and false
otherwise.
How will you check in a string that all characters are in uppercase?
isupper − Returns true if string has at least one cased character and all cased
characters are in uppercase and false otherwise.
How will you get a space-padded string with the original string left-justified to a total
of width columns?
How will you get the max alphabetical character from the string?
maxstrstr − Returns the max alphabetical character from the string str.
How will you get the min alphabetical character from the string?
minstrstr − Returns the min alphabetical character from the string str.
How will you replaces all occurrences of old substring in string with new string?
title − Returns "titlecased" version of string, that is, all words begin with uppercase
and the rest are lowercase.
How will you check in a string that all characters are decimal?
isdecimal − Returns true if a unicode string contains only decimal characters and false
otherwise.
To remove a list element, you can use either the del statement if you know exactly
which elementssyou are deleting or the remove method if you do not know.
[1, 2, 3, 4, 5, 6]
True
What is the output of for x in [1, 2, 3]: print x?
123
What is Next?
Further you can go through your past assignments you have done with the subject and
make sure you are able to speak confidently on them. If you are fresher then
interviewer does not expect you will answer very complex questions, rather you have
to make your basics concepts very strong.
Second it really doesn't matter much if you could not answer few questions but it
matters that whatever you answered, you must have answered with confidence. So just
feel confident during your interview. We at tutorialspoint wish you best luck to have a
good interviewer and all the very best for your future endeavor. Cheers :-)