c.bauherren.ovhWant to get back on your own 2 feet? Miss two car payments

Python Programming

Table of Contents

- [Dictionary](#dictionary)
- [Lists](#lists)
- [Tuple](#tuple)
- [Functions](#functions)
- [Lambda](#lambda)
- [Class](#class)


Boolean

True and false are literal values of boolean type

What Value evaluates to True?

In a if statement,

The following evaluates to False:

- builtin literal expression
- builtin literal expression
- Zero
- Zero, float  
- Empty string
- Empty list
- Empty tuple
- Empty dictionary
- Empty set
- Empty frozen set

You can use the function 'bool' to test

Data structure

Dictionary

Create and print a dictionary

Dictionary items are ordered, changeable, and do not allow duplicates. Dictionary items are presenteed in key:value pairs, and can be referred to by using the key name

We uses braces { and } to tell Python that this is a dictionary. We use , to seperate pairs. We use colons : to seperate keys and values

values()

The values() method returns a view object that displays a list of all the values in the dictionary.

values() doesn't take any parameters

Lists

List = [] ordered and changeable. Duplicates OK A collection is a single "variable" used to store multiple values

A list looks like this

fruits = ["apple", "orange", "banana", "coconut"]

To access one of the elements found in fruits

First element.. would be

print(fruits[0])

and so on...

If you try to access a non-existant value such as print(fruits[4]). You'll get the error, IndexError: list item out of range

With the index operator you could set a beginning, ending and step index

print(fruits[0:3])

Technically, you can omit '0'

For a step, every second element beginning from index 0

print(fruits[::2])

Would return, "['apple', 'banana']"

Going backwards,

print(fruits[::-1])

Would return, "['coconut', 'banana', 'orange', 'apple']"

To iterate over a list,

for fruit in fruits:

note: 'fruit' can be named anything, 'x', 'thing' etc. fruit is descriptive and isn't mandatory but a common naming convention

Get length of a list,

print(len(fruits))

'4' would be returned

Using the "in" operator we could find if a value was in a collection

print("apple" in fruits)

Returns "True", whereas

print("pineapple" in fruits)

Returns "False" as it isn't a value in the list

Remember the very beginning, what we said about lists...

Lists are ordered and changeable. Duplicates OK

We can change one of the values even after we create our list

fruits[0] = "pineapple"

If you iterate over the list now and print, you'll see pineapple is now the first value in the list

To add an element to the end of the list use the append method

fruits.append("pineapple")

To remove an element use the remove method

fruits.remove("apple")

To insert a value at a given index use the insert method

fruits.insert(0, "pineapple")

To sort in alphabetical order

fruits.sort()

To reverse a list, non alphabetically but in the order we placed them

fruits.reverse()

If you'd like reverse alphabetical order you can first sort then reverse

To clear a list use the clear method

fruits.clear()

To return the index of a value,

fruits.index("apple")

Which would be 0. If we don't find a value we get an error, "ValueError: "pineapple" is not in the list"

Duplicates are OK,

fruits.count("pineapple")

Would return 0

Reverse list

Alternate solution, using slicing


Add two lists index-wise. Create a new list that contains the 0th index item from both the list, then the 1st index item, and so on till the last element. any leftover items will get added at the end of the new list.

['My', 'name', 'is', 'Kelly']

This is the output

Given a list of numbers. write a program to turn every item of a list into its square

Alternate solution, using list comprehension

Tuple

Tuples are like lists, except they cannot be changed. The slot values cannot change, the length cannot change


Create tuple by literal expression

- Empty tuple
- tuple with 1 item 
- tuple with item _a, b, c_

Convert iterable to tuple

tuple(iterable)

Return a new tuple with items of iterable

Neither item, nor length of tuples can be changed

Nested Tuple and List

List and tuple can contain mixed datatypes and nested in anyway

Function and Class

Functions

Functions are reusable blocks of code. Think of them as little machines, taking inputs, processing them in some way and returing an output

Independent functions

len(my_string)

Method functions

my_string.replace("h", "w")

Happy Birthday

Invoice

.2f means round up to 2 decimal places

The return keyword is to exit a function and return a value

def myfunction():
    return 3+3
print(myfunction())

Statement's after the return line won't be executed

When you call a function some space gets allocated to it in RAM, when you compute the value of numbers that value will only exist while the function is still running, when the function gets deleted, most things in RAM such as integers get deleted

Lambda

Lambdas MUST be in a single line

Lambda by example

Lambda with one arg, a function that adds 1

print((lambda x: x + 1)(3))

Add 10 to argument and return result

x = lambda a : a + 10

Lambda with two args, a function that adds two numbers

print((lambda x, y: x + y)(3, 4))

Summarize argument a, b, and c and return the result:

x = lambda a, b, c : a + b + c

Giving lambda a name

ff = lambda x: x + 1

Add two nummbers

ff = lambda x, y: x + y

Lambda used with filter

Why use lambda?

The power of lambda is better shown when you use them as an anonymous function inside another function. Say you have a function definition that takes one argument, and that argument will be multiplied with an unknown number:

Class

A class is a boxed set of functions and variables. It defines a blueprint, of what variable and functions is together as a single thing.

Define a Class

By convention, class names start with a capital

Instantiate a Class, Create a Object

Classes are just blueprints of structures. Classes are usesell by themselves, just as how functions are useless if you don't call them

o you need to create a instance of the class to acutally do something.

Instance of a Class is called Object

Define constructor

You can define a method in a class such that it'll be automatically called when the class is instantiated. Such a method is called constructoro (aka initializer)

String

Strings are a sequence of characters. Python strings are immutable. Any function that works on a string returns a new string. Python uses zero-based indexing for strings. If you have a string with four characters, like "abcd", the indices will be 0, 1, 2, and 3 for each character.

In Python 3, they're a sequence of unicode characters. In Python 2 they're a sequence of bytes representing ASCII characters. But if prefixed with u, then it's a sequence of Unicode characters

String Indexing

- Access 1st character
- Access the last character
- get portion of string between index 0 and 3

negativeIndex = originalIndex - len(string)

print(note[6])

Middle, not the first or last

Get length of string

You can get the length of a string using a function pre-loaded into Python called len

String replace

Upper/lowercase

txt = "HELLO"

We can lowercase it simply by

print(txt.lower())

Uppercase would simply replace 'lower' with 'upper'

Convert

my_string = "Forty" + str(2)

Lists

my_favourite_numbers = [1, 3, 5, 7, 9]

my_friends = ["Victoria", "Mel", "Melanie", "Emma"]

List indexing

- `my_list[0]` # Evaluates to 44
- `my_list[-1]` # Evaluates to 63
- `my_list[1:3]` # Evaluates to [35, 21]

While

There are two varieties of control flows, for and while loops

i = 1
while i < 6:
    print(i)
    i += 1

NOTE: remember to increment i (i += 1), or else the loop will continue forever

i = 0
while i < 10
    print(f"The number is now {i}")
    i = i + 1

i = 0 is the counter variable

The while loop is like an if, in that it takes an expression that evaluates to True or False, and then executes its block of code if the condition is True. However, the while loop is different in that it keeps repeatedly executing the block for as long as the condition is True.

The break statement

With a brake statement the loop can be stopped even if the while condition is true:

Exit the loop when i is 3:

i = 1 while i < 6:

print(i)
if i == 3:
    break
i += 1

Cats

if

Example

The if keyword tells Python we want coded executed conditionally

leaves == 0: is the conditional expression, if evaluated to be true, then the block of code afterwards will be run, == is a comparison operator

For loop

for letter in ["a", "b", "c"]:
  print(f"This letter is {letter}")

The for loop iterates over a list, in simple-speak the Python for loop takes each item one by one and runs its block of code with that item

Len


'len' is a function pre-loaded into Python

length = len("Hello!")
print(f"String is {length} characters")

This prints the length of the string "Hello!"


Range

The range() function returns a sequence of numbers, starting from 0 by default, and increments by 1 (by default), and stops before a specified number

range() is mainly used when working with for loops - you can use it to loop through certain blocks of code a specified number of times

Negative values can be passeed to range() however float values can not

Syntax

range(start, stop, step)

Parameter Values

Examples

A basic example

x = range(6)
for n in x:
    print(n)

Sequence of no. from 3-5, print each item in seq.

x = range(3, 6)
for n in x:
    print(n)

Seq. of no. from 3-19, but increment by 2 instead of 1

x = range(3, 20, 2)
for n in x:
    print(n)

Counting

for num in range(3):
    print(num)
# Output
# 0
# 1
# 2
# 3
# 4

The function starts counting from 0, incremented by 1 on each iteration and ended at 4

How to Use the range() Function with the start And stop Arguments

for num in range(5, 11):
    print(num)   
# output
# 5
# 6
# 7
# 8
# 9
# 10

Create a list of numbers using the range() function

You can create a list of numbers by passing the range() function as an argument to the list() constructor,

number_list = list(range(5))
print(number_list)

Use the len() function with range()

Say you've got a list of items and want to do something to the items depending on how long the list is,

Logic

a = 10
b = 20
a = b 
print(f"a is {a}")
print(f"b is {b}")

If A corresponds to memory location ONE and you have ten, if B corresponds to memory location TWO, and a = b

Python looks up the value of b, it sees that it is 20, that 10 becomes overwritten

Sources used

Sources used: Xah Lee, Makers Academy, w3schools, programiz.com, pynative, Bro Code

Practice

Remove all exclamatory signs

Create a function that takes an integer as an argument and returns "Even" for even numbers or "Odd" for odd numbers.

DNA

You can also do...

Count duplicate no.

that will return the count of distinct case-insensitive alphabetic characters and numeric digits that occur more than once in the input string. The input string can be assumed to contain only alphabets (both uppercase and lowercase) and numeric digits.

Example:

Program:


Double letters

Analyze a string to check if it contains two of the same letter in a row. For example, the string "hello" has l twice in a row, while the string "nono" does not have two identical letters in a ro

Function must return True if there are two identical letters in a row in the string, and False otherwise.

Have a function take the str parameter being passed and return the string in reverse order

Explanation:

str[::-1]: is the slicing operation

Slicing is a way to extract parts of sequences like strings, lists and tuples.

A general form of slicing is:

sequence[start:stop:step]

Back to str[::-1]

start is unspecified so it defaults to the string's beginning, nor is stop so it defaults to the end of the string. step beeing -1 means slicing is in reverse order

Complete example

Calling the function such that FirstReverse("Hello"), str[::-1] reverses the string, producing "olleH" </details>

Have a function take the num parameter being passed and return the factorial of it

ie.

if num = 4, return (4 * 3 * 2 * 1)

For the test cases, the range will be between 1 and 18

Explanation:

What is a factorial?

The factorial of a number is the product of all positive integers from 1 up to that number. It's representation is (!).

The factorial of 4 (written as 4!) is calculated as:

4! = 4 x 3 x 2 x 1 = 24

Initial setup

sum = 1
count = 1
  • sum: variable is initialized to 1, it'll store the reesult of the factorial calculation
  • count: variable is initialized to 1, it'll be used to keep track of the current number being multiplied in the loop

While loop

while count <= num:

This loop runs as long as count is less than or equal to num

Inside the loop

sum = sum * count
count += 1
  • sum = sum * count: in each iteration of the loop, sum is multiplied by count and then updated with the new value, thus building up the factorial product

For example if num = 4, the operation goes through these steps:

  • Initially, sum = 1
  • When count = 1: sum = 1 * 1 = 1
  • When count = 2: sum = 1 * 2 = 2
  • When count = 3: sum = 2 * 3 = 6
  • When count = 4: sum = 6 * 4 = 24

count += 1: after each multiplication, count is increased by 1. This ensures that the loop eventually stops when count exceeds num

Example Usage

If you call the function such that FirstFactorial(4)

The loop will calculate

4 * 3 * 2 * 1 = 24

If you want the function to return the factorial instead of printing it, replace print(sum) with return sum </details>

Return longest word

Have a function take the sen paramater and return the longest word in the string. If there are two or more words the same length, return the first word from the string with that length. Ignore punctuation and assume sen will not be empty

Explanation:

Sen is a string (sentence)

Splitting the sentence into words

test = sen.split(" "): splits the sentence (sen) into a list of words using a space (" ") as the delimiter

For example: if sen is "I love programming", then test will be ['I', 'love', 'programming']

This variable now holds the list of words that were split from the sentence.

Initializing the longest word

greatest = test[0]

  • test[0]: this refers to the first word in the list test
  • greatest: variable iniatilized to the first word in the list. It'll be used to keep track of the longest word found so far

Looping through the words

for word in test:
    if len(word) > len(greatest):
        greatest = word

for word in test: this loop iterates over each word in the test list

  • if len(word) > len(greatest): this checks if the current word (word) is longer than the word stored in greatest - len(word: this function returns the length of the current word - len(greatest): this function returns the length of the longest word found so far - greatest = word: if the current word is longer than the word in greatest, the variable greatest is updated to the current word

</details>

Replace letter with next alphabetical letter

Have a function take the str parameter being passed and modify it using the following algorithm. Replace every letter in the string with the letter following it in the alphabet (ie. c becomes d, z becomes a). Then capitalize every vowel in this new string and finally return this modified string

Explanation: to-do

Have a function add up all the numbers from 1 to num.

Add one and divide by two

You can do this with a single expression like...

Typecasting

my_string = "five" + str(2)

Tell length

print(f"Your name is {len(my_name)} characters long")

Exercises

Display even numbers from 1 to 10 and count how many even numbers

Practice 2

Count consonants

Capitalise first letter of each word

Capitalise last letter of each word

Capitalise third letter of each word

Capital indexes

Return middle letter

Strip Functions

There are three built-in methods to remove whitespace from strings:

  • strip()
- removes leading and trailing whitespaces from a string
  • lstrip()
- only removes leading (left-side) whitespaces
  • rstrip()
-- only removes trailing (right-side) whitespaces
	

Remove all spaces