SYMBOL INDEX (405 symbols across 73 files) FILE: DSA in Python/Day-3/Assignment-11.py class Queue (line 2) | class Queue: method __init__ (line 3) | def __init__(self,max_size): method is_full (line 9) | def is_full(self): method is_empty (line 14) | def is_empty(self): method enqueue (line 19) | def enqueue(self,data): method dequeue (line 26) | def dequeue(self): method display (line 34) | def display(self): method get_max_size (line 39) | def get_max_size(self): method __str__ (line 43) | def __str__(self): function merge_queue (line 53) | def merge_queue(queue1,queue2): FILE: DSA in Python/Day-3/Assignment-13.py class Stack (line 2) | class Stack: method __init__ (line 3) | def __init__(self,max_size): method is_full (line 8) | def is_full(self): method is_empty (line 13) | def is_empty(self): method push (line 18) | def push(self,data): method pop (line 25) | def pop(self): method display (line 33) | def display(self): method get_max_size (line 42) | def get_max_size(self): method __str__ (line 46) | def __str__(self): function change_smallest_value (line 56) | def change_smallest_value(number_stack): FILE: DSA in Python/Day-3/Assignment-14.py class Queue (line 2) | class Queue: method __init__ (line 3) | def __init__(self,max_size): method is_full (line 10) | def is_full(self): method is_empty (line 15) | def is_empty(self): method enqueue (line 20) | def enqueue(self,data): method dequeue (line 27) | def dequeue(self): method display (line 35) | def display(self): method get_max_size (line 40) | def get_max_size(self): method __str__ (line 44) | def __str__(self): function check_numbers (line 54) | def check_numbers(number_queue): FILE: DSA in Python/Day-3/Assignment-15.py class Queue (line 2) | class Queue: method __init__ (line 3) | def __init__(self,max_size): method is_full (line 10) | def is_full(self): method is_empty (line 15) | def is_empty(self): method enqueue (line 20) | def enqueue(self,data): method dequeue (line 27) | def dequeue(self): method display (line 35) | def display(self): method get_max_size (line 40) | def get_max_size(self): method __str__ (line 44) | def __str__(self): class Job (line 55) | class Job: method __init__ (line 56) | def __init__(self,name, time_needed): method get_name (line 60) | def get_name(self): method get_time_needed (line 62) | def get_time_needed(self): method get_time_elapsed (line 64) | def get_time_elapsed(self): method __str__ (line 66) | def __str__(self): method elapsed_time (line 68) | def elapsed_time(self, no_of_mins): class Employee (line 75) | class Employee: method __init__ (line 76) | def __init__(self, name): method set_allocated_job (line 79) | def set_allocated_job(self, allocated_job): method get_name (line 81) | def get_name(self): method get_allocated_job (line 83) | def get_allocated_job(self): method elapsed_time (line 85) | def elapsed_time(self, no_of_mins): class Company (line 93) | class Company: method __init__ (line 94) | def __init__(self, emp_list): method get_employees (line 97) | def get_employees(self): method get_pending_jobs (line 99) | def get_pending_jobs(self): method allocate_new_job (line 101) | def allocate_new_job(self,job): method elapsed_time (line 110) | def elapsed_time(self, no_of_mins): FILE: DSA in Python/Day-4/Assignment-16.py class Queue (line 2) | class Queue: method __init__ (line 3) | def __init__(self,max_size): method is_full (line 10) | def is_full(self): method is_empty (line 15) | def is_empty(self): method enqueue (line 20) | def enqueue(self,data): method dequeue (line 27) | def dequeue(self): method display (line 35) | def display(self): method get_max_size (line 40) | def get_max_size(self): method __str__ (line 44) | def __str__(self): class Stack (line 54) | class Stack: method __init__ (line 55) | def __init__(self,max_size): method is_full (line 60) | def is_full(self): method is_empty (line 65) | def is_empty(self): method push (line 70) | def push(self,data): method pop (line 77) | def pop(self): method display (line 85) | def display(self): method get_max_size (line 94) | def get_max_size(self): method __str__ (line 98) | def __str__(self): function separate_boxes (line 108) | def separate_boxes(box_stack): FILE: DSA in Python/Day-5/Assignment-20.py class Item (line 3) | class Item: method __init__ (line 4) | def __init__(self, item_name, author_name, published_year): method get_item_name (line 8) | def get_item_name(self): method get_author_name (line 10) | def get_author_name(self): method get_published_year (line 12) | def get_published_year(self): method __str__ (line 14) | def __str__(self): class Library (line 17) | class Library: method __init__ (line 18) | def __init__(self, item_list): method get_item_list (line 20) | def get_item_list(self): method sort_item_list_by_author (line 22) | def sort_item_list_by_author(self, new_item_list): method add_new_items (line 25) | def add_new_items(self, new_item_list): method sort_items_by_published_year (line 28) | def sort_items_by_published_year(self): FILE: DSA in Python/Day-5/Assignment-21.py class Queue (line 2) | class Queue: method __init__ (line 3) | def __init__(self,max_size): method is_full (line 10) | def is_full(self): method is_empty (line 15) | def is_empty(self): method enqueue (line 20) | def enqueue(self,data): method dequeue (line 27) | def dequeue(self): method display (line 35) | def display(self): method get_max_size (line 40) | def get_max_size(self): method __str__ (line 44) | def __str__(self): class Stack (line 55) | class Stack: method __init__ (line 56) | def __init__(self,max_size): method is_full (line 61) | def is_full(self): method is_empty (line 66) | def is_empty(self): method push (line 71) | def push(self,data): method pop (line 78) | def pop(self): method display (line 86) | def display(self): method get_max_size (line 95) | def get_max_size(self): method __str__ (line 99) | def __str__(self): function find_flights (line 120) | def find_flights(flight_time): function sortMethod (line 128) | def sortMethod(val): function sort_flight_list (line 132) | def sort_flight_list(flight_list): function get_passenger_details (line 137) | def get_passenger_details(flight_detail): function security_check (line 144) | def security_check(passenger_pnr_list): function sortPassenger (line 151) | def sortPassenger(value): function sort_passengers (line 166) | def sort_passengers(passenger_pnr_list): function boarding (line 170) | def boarding(passenger_pnr_list): function seating (line 176) | def seating(passenger_queue): FILE: DSA in Python/Day-5/Assignment-22.py class Stack (line 2) | class Stack: method __init__ (line 3) | def __init__(self,max_size): method is_full (line 8) | def is_full(self): method is_empty (line 13) | def is_empty(self): method push (line 18) | def push(self,data): method pop (line 25) | def pop(self): method display (line 33) | def display(self): method get_max_size (line 42) | def get_max_size(self): method __str__ (line 46) | def __str__(self): function merge_stack (line 56) | def merge_stack(stack1,stack2): FILE: DSA in Python/Day-5/Assignment-23.py function generate_cards_per_type (line 6) | def generate_cards_per_type(card_type): function generate_card_deck (line 10) | def generate_card_deck(): function shuffle_card_deck (line 16) | def shuffle_card_deck(cards_list): function cardSort (line 34) | def cardSort(val): function sort_cards_of_each_player (line 42) | def sort_cards_of_each_player(card_list): function allocate_cards_to_players (line 45) | def allocate_cards_to_players(cards_list): function prepare_cards (line 56) | def prepare_cards(): FILE: DSA in Python/Day-5/Exercise-17.py function swap (line 3) | def swap(num_list, first_index, second_index): FILE: DSA in Python/Day-5/Exercise-18.py function find_next_min (line 3) | def find_next_min(num_list,start_index): FILE: DSA in Python/Day-5/Exercise-19_SELECTION-SORT-ALGO.py function swap (line 2) | def swap(num_list, first_index, second_index): function find_next_min (line 8) | def find_next_min(num_list,start_index): function selection_sort (line 12) | def selection_sort(num_list): FILE: DSA in Python/Day-5/Exercise-20_BUBBLE-SORT-ALGO.py function swap (line 2) | def swap(num_list, first_index, second_index): function find_next_min (line 7) | def find_next_min(num_list,start_index): function selection_sort (line 10) | def selection_sort(num_list): function bubble_sort (line 16) | def bubble_sort(num_list): FILE: DSA in Python/Day-5/Exercise-21_MERGE-SORT-ALGO.py function merge_sort (line 3) | def merge_sort(num_list): function merge (line 15) | def merge(left_list,right_list): FILE: DSA in Python/Day-5/Exercise-22.py function order_heights (line 3) | def order_heights(student_list,height_list): FILE: DSA in Python/Day-5/Exercise-23.py function arrange_tickets (line 3) | def arrange_tickets(tickets_list): FILE: DSA in Python/Day-6/Exercise-24.py function make_change (line 3) | def make_change(denomination_list, amount): FILE: DSA in Python/Day-6/Exercise-25.py function sortActivity (line 2) | def sortActivity(value): function sortActivities (line 4) | def sortActivities(value): function find_maximum_activities (line 6) | def find_maximum_activities(activity_list,start_time_list, finish_time_l... FILE: OOP in Python/Day-1/assignment-3.py class Customer (line 2) | class Customer: method __init__ (line 4) | def __init__(self): method pays_bill (line 8) | def pays_bill(self, amount): method purchases (line 11) | def purchases(self): FILE: OOP in Python/Day-1/assignment-4.py function check_type (line 1) | def check_type(type): class Vehicle (line 6) | class Vehicle: method __init__ (line 7) | def __init__(self): method set_vehicle_id (line 9) | def set_vehicle_id(self,id): method set_vehicle_type (line 11) | def set_vehicle_type(self,type): method set_vehicle_cost (line 16) | def set_vehicle_cost(self,cost): method get_vehicle_id (line 18) | def get_vehicle_id(self): method get_vehicle_type (line 20) | def get_vehicle_type(self): method get_vehicle_cost (line 22) | def get_vehicle_cost(self): FILE: OOP in Python/Day-1/assignment-8.py class Student (line 3) | class Student: method __init__ (line 5) | def __init__(self): method validate_marks (line 9) | def validate_marks(self): method validate_age (line 14) | def validate_age(self): method check_qualification (line 19) | def check_qualification(self): method set_student_id (line 24) | def set_student_id(self): method get_student_id (line 28) | def get_student_id(self): method set_marks (line 30) | def set_marks(self, marks): method get_marks (line 32) | def get_marks(self): method set_age (line 34) | def set_age(self, age): method get_age (line 36) | def get_age(self): FILE: OOP in Python/Day-1/assignment-9.py class Student (line 6) | class Student: method __init__ (line 7) | def __init__(self): method choose_course (line 13) | def choose_course(self,course_id): method get_course_id (line 23) | def get_course_id(self): method get_fees (line 25) | def get_fees(self): method validate_marks (line 27) | def validate_marks(self): method validate_age (line 32) | def validate_age(self): method check_qualification (line 37) | def check_qualification(self): method set_student_id (line 42) | def set_student_id(self, sid): method get_student_id (line 44) | def get_student_id(self): method set_marks (line 46) | def set_marks(self, marks): method get_marks (line 48) | def get_marks(self): method set_age (line 50) | def set_age(self, age): method get_age (line 52) | def get_age(self): FILE: OOP in Python/Day-2/assignment-10.py class CallDetail (line 3) | class CallDetail: method __init__ (line 4) | def __init__(self, phoneno, called_no, duration, call_type): class Util (line 10) | class Util: method __init__ (line 11) | def __init__(self): method parse_customer (line 14) | def parse_customer(self,list_of_call_string): FILE: OOP in Python/Day-2/assignment-11.py class Flower (line 4) | class Flower: method __init__ (line 5) | def __init__(self): method validate_flower (line 9) | def validate_flower(self): method validate_stock (line 14) | def validate_stock(self, required_quantity): method sell_flower (line 19) | def sell_flower(self,required_quantity): method check_level (line 22) | def check_level(self): method get_flower_name (line 28) | def get_flower_name(self): method get_price_per_kg (line 30) | def get_price_per_kg(self): method get_stock_available (line 32) | def get_stock_available(self): method set_flower_name (line 35) | def set_flower_name(self, flower_name): method set_price_per_kg (line 37) | def set_price_per_kg(self,price_per_kg): method set_stock_available (line 39) | def set_stock_available(self, stock_available): FILE: OOP in Python/Day-2/assignment-12.py class Bill (line 2) | class Bill: method __init__ (line 3) | def __init__(self, bill_id, patient_name): method get_bill_id (line 7) | def get_bill_id(self): method get_patient_name (line 9) | def get_patient_name(self): method get_bill_amount (line 11) | def get_bill_amount(self): method calculate_bill_amount (line 13) | def calculate_bill_amount(self, consultation_fees, quantity_list, pric... FILE: OOP in Python/Day-3/assignment-15.py class Parrot (line 3) | class Parrot: method __init__ (line 5) | def __init__(self, name, color): method get_unique_number (line 10) | def get_unique_number(self): method get_color (line 12) | def get_color(self): method get_name (line 14) | def get_name(self): FILE: OOP in Python/Day-3/assignment-16.py class Customer (line 3) | class Customer: method __init__ (line 4) | def __init__(self,phone_no,name,age): class CallDetail (line 10) | class CallDetail: method __init__ (line 11) | def __init__(self,phone_no,called_no,duration): class Util (line 16) | class Util: method __init__ (line 17) | def __init__(self): method parse_customer (line 19) | def parse_customer(self,list_of_customers,list_of_calls): FILE: OOP in Python/Day-3/assignment-17.py class Freight (line 2) | class Freight: method __init__ (line 4) | def __init__(self, recipient_customer, from_customer, weight, distance): method validate_weight (line 11) | def validate_weight(self): method validate_distance (line 16) | def validate_distance(self): method forward_cargo (line 21) | def forward_cargo(self): method get_freight_charge (line 29) | def get_freight_charge(self): method get_freight_id (line 31) | def get_freight_id(self): method get_recipient_customer (line 33) | def get_recipient_customer(self): method get_from_customer (line 35) | def get_from_customer(self): method get_weight (line 37) | def get_weight(self): method get_distance (line 39) | def get_distance(self): class Customer (line 42) | class Customer: method __init__ (line 43) | def __init__(self, customer_id, customer_name, address): method validate_customer_id (line 47) | def validate_customer_id(self): method get_customer_id (line 53) | def get_customer_id(self): method get_customer_name (line 55) | def get_customer_name(self): method get_address (line 57) | def get_address(self): FILE: OOP in Python/Day-3/assignment-18.py class Item (line 4) | class Item: method __init__ (line 5) | def __init__(self,item_id,description,price_per_quantity): method get_item_id (line 10) | def get_item_id(self): method get_description (line 12) | def get_description(self): method get_price_per_quantity (line 14) | def get_price_per_quantity(self): class Bill (line 17) | class Bill: method __init__ (line 19) | def __init__(self): method generate_bill_amount (line 22) | def generate_bill_amount(self,item_quantity, items): method get_bill_id (line 33) | def get_bill_id(self): method get_bill_amount (line 35) | def get_bill_amount(self): class Customer (line 38) | class Customer: method __init__ (line 39) | def __init__(self, customer_name): method pays_bill (line 42) | def pays_bill(self,bill): method get_customer_name (line 47) | def get_customer_name(self): method get_payment_status (line 49) | def get_payment_status(self): FILE: OOP in Python/Day-4/Assignment-24.py class Apparel (line 2) | class Apparel: method __init__ (line 4) | def __init__(self, price, item_type): method get_item_id (line 9) | def get_item_id(self): method get_item_type (line 11) | def get_item_type(self): method get_price (line 13) | def get_price(self): method calculate_price (line 15) | def calculate_price(self): method set_price (line 17) | def set_price(self, price): class Cotton (line 19) | class Cotton(Apparel): method __init__ (line 20) | def __init__(self, price,discount): method calculate_price (line 23) | def calculate_price(self): method get_discount (line 29) | def get_discount(self): class Silk (line 31) | class Silk(Apparel): method __init__ (line 32) | def __init__(self, price): method calculate_price (line 35) | def calculate_price(self): method get_points (line 45) | def get_points(self): FILE: OOP in Python/Day-4/Assignment-25.py class FruitInfo (line 2) | class FruitInfo: method get_fruit_price (line 6) | def get_fruit_price(fruit_name): method get_fruit_name_list (line 12) | def get_fruit_name_list(): method get_fruit_price_list (line 15) | def get_fruit_price_list(): class Purchase (line 17) | class Purchase: method __init__ (line 19) | def __init__(self, customer,fruit_name, quantity): method get_purchase_id (line 24) | def get_purchase_id(self): method get_customer (line 26) | def get_customer(self): method get_quantity (line 28) | def get_quantity(self): method calculate_price (line 30) | def calculate_price(self): class Customer (line 48) | class Customer(): method __init__ (line 49) | def __init__(self, customer_name, cust_type): method get_customer_name (line 53) | def get_customer_name(self): method get_cust_type (line 55) | def get_cust_type(self): FILE: OOP in Python/Day-4/Assignment-27.py class ThemePark (line 3) | class ThemePark: method validate_game (line 7) | def validate_game(game_input): method get_points (line 14) | def get_points(game_input): method get_amount (line 20) | def get_amount(game_input): class Ticket (line 26) | class Ticket: method __init__ (line 28) | def __init__(self): method generate_ticket_id (line 31) | def generate_ticket_id(self): method calculate_amount (line 35) | def calculate_amount(self, list_of_games): method get_ticket_id (line 45) | def get_ticket_id(self): method get_ticket_amount (line 47) | def get_ticket_amount(self): class Customer (line 50) | class Customer: method __init__ (line 51) | def __init__(self, name, list_of_games): method play_game (line 57) | def play_game(self): method update_food_coupon (line 62) | def update_food_coupon(self): method book_ticket (line 65) | def book_ticket(self): method get_name (line 73) | def get_name(self): method get_list_of_games (line 75) | def get_list_of_games(self): method get_ticket (line 77) | def get_ticket(self): method get_points_earned (line 79) | def get_points_earned(self): method get_food_coupon (line 81) | def get_food_coupon(self): FILE: OOP in Python/Day-5/Assignment-29.py class Customer (line 3) | class Customer(metaclass=ABCMeta): method __init__ (line 4) | def __init__(self,customer_name): method calculate_bill_amount (line 9) | def calculate_bill_amount(self): method get_customer_name (line 11) | def get_customer_name(self): class OccasionalCustomer (line 13) | class OccasionalCustomer(Customer): method __init__ (line 15) | def __init__(self, customer_name, distance_in_kms): method validate_distance_in_kms (line 20) | def validate_distance_in_kms(self): method calculate_bill_amount (line 25) | def calculate_bill_amount(self): method get_distance_in_kms (line 40) | def get_distance_in_kms(self): class RegularCustomer (line 42) | class RegularCustomer(Customer): method __init__ (line 44) | def __init__(self, customer_name, no_of_tiffin): method validate_no_of_tiffin (line 49) | def validate_no_of_tiffin(self): method calculate_bill_amount (line 54) | def calculate_bill_amount(self): method get_no_of_tiffin (line 62) | def get_no_of_tiffin(self): FILE: OOP in Python/Day-5/Assignment-30.py class Customer (line 3) | class Customer: method __init__ (line 4) | def __init__(self, customer_name, quantity): method validate_quantity (line 7) | def validate_quantity(self): method get_customer_name (line 12) | def get_customer_name(self): method get_quantity (line 14) | def get_quantity(self): class Pizzaservice (line 17) | class Pizzaservice: method __init__ (line 19) | def __init__(self, customer, pizza_type, additional_topping): method validate_pizza_type (line 25) | def validate_pizza_type(self): method calculate_pizza_cost (line 30) | def calculate_pizza_cost(self): method get_service_id (line 45) | def get_service_id(self): method get_pizza_type (line 47) | def get_pizza_type(self): method get_customer (line 49) | def get_customer(self): method get_additional_topping (line 51) | def get_additional_topping(self): class Doordelivery (line 53) | class Doordelivery(Pizzaservice): method __init__ (line 54) | def __init__(self, customer, pizza_type, additional_topping, distance_... method validate_distance_in_kms (line 58) | def validate_distance_in_kms(self): method calculate_pizza_cost (line 63) | def calculate_pizza_cost(self): method get_delivery_charge (line 76) | def get_delivery_charge(self): method get_distance_in_kms (line 78) | def get_distance_in_kms(self): FILE: OOP in Python/Day-5/Assignment-31.py class Logistics (line 5) | class Logistics(metaclass=ABCMeta): method __init__ (line 7) | def __init__(self,start_reading,end_reading): method get_consumer_id (line 11) | def get_consumer_id(self): method get_start_reading (line 13) | def get_start_reading(self): method get_end_reading (line 15) | def get_end_reading(self): method validate_meter_reading (line 17) | def validate_meter_reading(self): method generate_consumer_id (line 22) | def generate_consumer_id(self): method calculate_bill_amount (line 29) | def calculate_bill_amount(self): class PassengerLogistics (line 31) | class PassengerLogistics(Logistics): method __init__ (line 36) | def __init__(self,vehicle_type,start_reading,end_reading): method get_vehicle_type (line 39) | def get_vehicle_type(self): method validate_vehicle_type (line 41) | def validate_vehicle_type(self): method calculate_bill_amount (line 46) | def calculate_bill_amount(self): class GoodsLogistics (line 67) | class GoodsLogistics(Logistics): method __init__ (line 69) | def __init__(self,carrier_type,goods_weight,start_reading,end_reading): method get_carrier_type (line 73) | def get_carrier_type(self): method get_goods_weight (line 75) | def get_goods_weight(self): method validate_carrier_type (line 77) | def validate_carrier_type(self): method calculate_bill_amount (line 82) | def calculate_bill_amount(self): FILE: Programming in Python/Day-2/PF-Assgn-15.py function find_product (line 2) | def find_product(num1,num2,num3): FILE: Programming in Python/Day-2/PF-Assgn-16.py function make_amount (line 2) | def make_amount(rupees_to_make,no_of_five,no_of_one): FILE: Programming in Python/Day-2/PF-Assgn-17.py function find_new_salary (line 4) | def find_new_salary(current_salary,job_level): FILE: Programming in Python/Day-2/PF-Assgn-18.py function convert_currency (line 4) | def convert_currency(amount_needed_inr,current_currency_name): FILE: Programming in Python/Day-2/PF-Assgn-19.py function calculate_bill_amount (line 3) | def calculate_bill_amount(food_type,quantity_ordered,distance_in_kms): FILE: Programming in Python/Day-2/PF-Assgn-20.py function calculate_loan (line 3) | def calculate_loan(account_number,salary,account_balance,loan_type,loan_... FILE: Programming in Python/Day-2/PF-Assgn-21.py function generate_next_date (line 3) | def generate_next_date(day,month,year): FILE: Programming in Python/Day-3/PF-Assgn-22.py function find_leap_years (line 2) | def find_leap_years(given_year): FILE: Programming in Python/Day-3/PF-Assgn-23.py function calculate_bill_amount (line 2) | def calculate_bill_amount(gems_list, price_list, reqd_gems,reqd_quantity): FILE: Programming in Python/Day-3/PF-Assgn-24.py function form_triangle (line 2) | def form_triangle(num1,num2,num3): FILE: Programming in Python/Day-3/PF-Assgn-26.py function solve (line 14) | def solve(heads,legs): FILE: Programming in Python/Day-3/PF-Assgn-28.py function find_max (line 3) | def find_max(num1, num2): FILE: Programming in Python/Day-4/PF-Assgn-29.py function calculate (line 7) | def calculate(distance,no_of_passengers): FILE: Programming in Python/Day-4/PF-Assgn-30.py function encode (line 3) | def encode(message): FILE: Programming in Python/Day-4/PF-Assgn-31.py function check_palindrome (line 2) | def check_palindrome(word): FILE: Programming in Python/Day-4/PF-Assgn-32.py function max_visited_speciality (line 2) | def max_visited_speciality(patient_medical_speciality_list,medical_speci... FILE: Programming in Python/Day-4/PF-Assgn-33.py function find_common_characters (line 3) | def find_common_characters(msg1,msg2): FILE: Programming in Python/Day-5/PF-Assgn-3.py function check_double (line 3) | def check_double(number): FILE: Programming in Python/Day-5/PF-Assgn-34.py function find_pairs_of_numbers (line 2) | def find_pairs_of_numbers(num_list,n): FILE: Programming in Python/Day-5/PF-Assgn-35.py function find_more_than_average (line 6) | def find_more_than_average(): function sort_marks (line 15) | def sort_marks(): function generate_frequency (line 18) | def generate_frequency(): FILE: Programming in Python/Day-5/PF-Assgn-36.py function create_largest_number (line 2) | def create_largest_number(number_list): FILE: Programming in Python/Day-5/PF-Assgn-37.py function calculate_total_chocolates (line 7) | def calculate_total_chocolates(): function reward_child (line 10) | def reward_child(child_id_rewarded,extra_chocolates): FILE: Programming in Python/Day-5/PF-Assgn-38.py function check_double (line 3) | def check_double(number): FILE: Programming in Python/Day-5/PF-Assgn-39.py function place_order (line 7) | def place_order(*item_tuple): function check_quantity_available (line 27) | def check_quantity_available(index,quantity_requested): FILE: Programming in Python/Day-6/PF-Assgn-40.py function is_palindrome (line 2) | def is_palindrome(word): FILE: Programming in Python/Day-6/PF-Assgn-41.py function find_ten_substring (line 2) | def find_ten_substring(num_str): FILE: Programming in Python/Day-6/PF-Assgn-42.py function find_factors (line 2) | def find_factors(num): function is_prime (line 10) | def is_prime(num, i): function find_largest_prime_factor (line 19) | def find_largest_prime_factor(list_of_factors): function find_f (line 27) | def find_f(num): function find_g (line 35) | def find_g(num): FILE: Programming in Python/Day-6/PF-Assgn-43.py function find_smallest_number (line 3) | def find_smallest_number(num): FILE: Programming in Python/Day-6/PF-Assgn-44.py function find_duplicates (line 3) | def find_duplicates(list_of_numbers): FILE: Programming in Python/Day-7/PF-Assgn-46.py function nearest_palindrome (line 3) | def nearest_palindrome(number): function nearest_palindrome (line 23) | def nearest_palindrome(number): FILE: Programming in Python/Day-7/PF-Assgn-47.py function encrypt_sentence (line 4) | def encrypt_sentence(sentence): FILE: Programming in Python/Day-7/PF-Assgn-48.py function find_correct (line 3) | def find_correct(word_dict): FILE: Programming in Python/Day-7/PF-Assgn-49.py function biased_flip (line 4) | def biased_flip(prob_true): FILE: Programming in Python/Day-7/PF-Assgn-50.py function sms_encoding (line 3) | def sms_encoding(data): FILE: Programming in Python/Day-7/PF-Assgn-51.py function draw_square (line 17) | def draw_square(length,angle): FILE: Programming in Python/Day-8/PF-Assgn-52.py function sum_of_numbers (line 5) | def sum_of_numbers(list_of_num,filter_func=None): function even (line 12) | def even(data): function odd (line 19) | def odd(data): FILE: Programming in Python/Day-8/PF-Assgn-54.py function check_anagram (line 3) | def check_anagram(data1,data2): FILE: Programming in Python/Day-8/PF-Assgn-56.py function max_frequency_word_counter (line 8) | def max_frequency_word_counter(data):