JA Jasenko Krejić How I passed a PCEP exam I have been working with Python for few years, although it hasn’t been my primary job-it was more of a help while automating a boring task…
TCH JA Jasenko Krejić Storing Float Values in Python For sure, you are used to assign a float value to the variable, like this:
MDA ECO TCH JA Jasenko Krejić Python Text File Reading and Writing in various modes, Part 1 Python can be a bit complicated when reading and writing files. Even in text mode, which I am going to discuss in these articles, things…
TCH JA Jasenko Krejić List Slice Assignment in Python You know that lists are mutable objects, meaning that elements can be appended, deleted, inserted and few other operations. And you have…
JA Jasenko Krejić Passed my PCAP Exam Few Days Ago Last week, I passed my PCAP Python Institute exam and earned the certification. Before that, I had passed the PCEP exam quite some time…
JA Jasenko Krejić Bound-Unbound in Python methods, do you know the difference? Let me tell you a story about bound and unbound methods in Python classes, which some of you can find very hard to grasp.
MDA TCH JA Jasenko Krejić Python Text File Reading and Writing in various modes, Part 3 In the previous two articles, I have discussed usage of various file open modes in Python: r(the default),r+, w, and w’, as well as using…
MDA TCH JA Jasenko Krejić Python Text File Reading and Writing in various modes, Part 2 In the previous article, you have seen how to read text files with r file open mode(default mode if it is omitted), and write data using…
MDA TCH JA Jasenko Krejić Python Text File Reading and Writing in Various Modes, the Quiz This quiz will help you go through the concepts I have discuseed in previous articles. Let”s get started!
TCH JA Jasenko Krejić If a = 3, b = a, what happens to b when a changes? You’ve probably encountered this before — maybe not in this exact form — but you’ve assigned a value to a variable, and then assigned that…
HUM TCH JA Jasenko Krejić A surprising property of Python list slicing with indices If you’re working with or learning Python, you probably know that lists are mutable, ordered collections of data that can hold elements of…