Python Flashcards
Εστω array A[3,5,7,8,9]. Ποιά η τιμή του A[-2]?
8
for i in range(10)
is the same as:
for I in range(0,10,1)
?
Yes, default step is 1 and default start is 0. End (10) is non-inclusive
For i in range(0,10,1) is the c equivalent
for(I=0; I<10; I++)
?
yes
Result of this code?
x = 8 def foo(): x = 5 print(x) foo() print(x)
5
8
Result of this code?
x = 8 def foo(): global x x = 5 print(x) foo() print(x)
5
5
what is a package?
a package is a collection of modules which can me imported and used in other python scripts
What’s tha value of __name__?
It depends:
If you run the script the value of __name__ is main.
If you don’t run it then it is the name of the script
How to get the length of a list L?
len(L). len is a function that takes the list as an argument. L.list doesn’t work.
What is a list in python?
Ordered (you can have indices)
Allows duplicates
Is mutable (changeable) e.g. L[2] = 8
What is a set in python?
Unordered(no indices)
No duplicates
Immutable (you can only add or remove elements)
You can iterate with “in”
What is a tuple
Ordered
Immutable
Less memory than list
Faster to loop -> the way to go in data science
Are these two the same?
dict x = {"a":5, "b":6} x.clear()
dict x = {"a":5, "b":6} x = {}
No, clear empties the dictionary so all references are affected.
x = {} will create a new empty dictionary and assign it to x variable but the previous dictionary remains unaffected
Difference between
open()
and
with open()
If you use open() you have to call close().
“with open()” doesn’t require the programmer to close the file. Its done automatically
What is the JSON equivalent of a Python dict?
Object
JSON equivalent of a python list?
Array
JSON equivalent of a python tuple?
Array
JSON equivalent of a python str?
String
JSON equivalent of a python int, float?
Number
JSON equivalent of python None?
null
How are class methods defined?
A method without “self” as parameter is a class method that can be call like that:
Classname.method().
If an instance tries to call this method exception is raised.
if the method is declared like
@staticmethod
def foo(x) #no self param
…
then both class and instances can call this method.
Methods with self param are instance methods and can be called Object.method()
What is a comprehension?
An elegant and more efficient way to create a new list from another list. Conditions may apply.
What are generators?
Generator expressions can be used to create a new list from an iterable. They are memory efficient because they only calculate the next value when it is requested.
Result of 14/8?
1.75
Result of 14//8?
1
What are the two types of casting?
Is there any data loss?
Implicit: Performed by python interpreter. No data loss
Explicit: Performed by us for example x = (int)1.75 –> x=1. Could have data loss.
What are the types of supported comprehensions in python?
List, set and dictionary