Question

In: Computer Science

def change_type(info: List[list]) -> None: """ Modify info to a float if and only if it...

def change_type(info: List[list]) -> None:
""" Modify info to a float if and only if it represents a number that is not
a whole number(a float), and convert info to an int if and only if it represents a
whole number, keep everythingelse as a string.

>>> i = [['apple', '888', 'School', '111.1']]
>>> change_type(i)
>>> i

  [['apple', 888, 'School', '111.1']]

Please help! Write as little code as possible!

Please only use if statements, nested loop and lists to solve this question.

Solutions

Expert Solution

def change_type(info):
    newList = []

    # iterating list through sub lists
    for subList in info:

        # initializing empty list
        temp = []
        # iterating though every element in sub list
        for element in subList:

            # checking if number is numeric or not
            # if numeric converted into integer and appended
            # else numeric is converted to float and appended
            if element.isnumeric():
                if int(element) >= 0:
                    temp.append(int(element))
                else:
                    temp.append(float(element))
            else:
                temp.append(element)

        # appending sublist to newList
        newList.append(temp)
        # returning newlist

    return newList

Code

Output


Related Solutions

from partition import partition def quicksort(a: list, l: int, u: int) -> None: '''Sort the given...
from partition import partition def quicksort(a: list, l: int, u: int) -> None: '''Sort the given list a in non-descending order. Precondition: 0 <= l and u < len(a)''' if l < u: mid = (l + u) // 2 three = [a[l], a[mid], a[u]] three.sort() if three[1] == a[l]: pivot_loc = l elif three[1] == a[u]: pivot_loc = u else: pivot_loc = mid a[u], a[pivot_loc] = a[pivot_loc], a[u] pivot = a[u] i = partition(a, l, u - 1, pivot)...
class Board: def __init__(self): self.pieces = [[None for i in range(8)] for j in range(8)] def...
class Board: def __init__(self): self.pieces = [[None for i in range(8)] for j in range(8)] def __str__(self): s = "" for j in range(7, -1, -1): #for each row for i in range(8): # for each column if self.pieces[j][i] is None: # if self.pieces[j][i] is None s += "." # populate the row with '.' val for each column else: s += self.pieces [j][i].get_symbol() s += "\n" #after each row add a new line return s # return after iterating...
''' File: pyPatientLL.py Author: JD ''' class Node: #ADT        def __init__(self, p = None):             ...
''' File: pyPatientLL.py Author: JD ''' class Node: #ADT        def __init__(self, p = None):              self.name = ""              self.ss = self.age = int(0)              self.smoker = self.HBP = self.HFD = self.points = int(0)              self.link = None              #if list not empty              if p != None:                     p.link = self        ptrFront = ptrEnd = None choice = int(0) def menu():        print( "\n\tLL Health Clinic\n\n")        print( "1. New patient\n")        print( "2. View patient by...
C++ Given vector<float> vec; Using a ranged for loop, modify each value in vector to cube...
C++ Given vector<float> vec; Using a ranged for loop, modify each value in vector to cube and subtract 12.5
Modify this linked list code to work with string. Insert the following items into the list...
Modify this linked list code to work with string. Insert the following items into the list and display the list. The items are: Pepsi, Coke, DrPepper, Sprite, Fanta. Insert them in that order. Display the list. Then delete DrPepper and redisplay the list. Then insert 7-UP and redisplay the list. Then append Water and redisplay the list. c++ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ #include <iostream> using namespace std; class ListNode { public:     int value;     ListNode *next;     ListNode(int nodeValue) {       value...
Modify the Movie List 2D program -Modify the program so it contains four columns: name, year,...
Modify the Movie List 2D program -Modify the program so it contains four columns: name, year, price and rating (G,PG,R…) -Enhance the program so it provides a find by rating function that lists all of the movies that have a specified rating def list(movie_list): if len(movie_list) == 0: print("There are no movies in the list.\n") return else: i = 1 for row in movie_list: print(str(i) + ". " + row[0] + " (" + str(row[1]) + ")") i += 1...
from typing import List def longest_chain(submatrix: List[int]) -> int: """ Given a list of integers, return...
from typing import List def longest_chain(submatrix: List[int]) -> int: """ Given a list of integers, return the length of the longest chain of 1's that start from the beginning. You MUST use a while loop for this! We will check. >>> longest_chain([1, 1, 0]) 2 >>> longest_chain([0, 1, 1]) 0 >>> longest_chain([1, 0, 1]) 1 """ i = 0 a = [] while i < len(submatrix) and submatrix[i] != 0: a.append(submatrix[i]) i += 1 return sum(a) def largest_rectangle_at_position(matrix: List[List[int]], x:...
def warmer_year(temps_then: List[int], temps_now: List[int]) -> List[str]: """Return a list of strings representing whether this year's...
def warmer_year(temps_then: List[int], temps_now: List[int]) -> List[str]: """Return a list of strings representing whether this year's temperatures from temps_now are warmer than past temperatures in temps_then. The resulting list should contain "Warmer" at the indexes where this year's temperature is warmer, and "Not Warmer" at the indexes where the past year was warmer, or there is a tie. Precondition: len(temps_then) == len(temps_now) >>> warmer_year([10], [11]) ['Warmer'] >>> warmer_year([26, 27, 27, 28], [25, 28, 27, 30]) ['Not Warmer', 'Warmer', 'Not Warmer',...
This is the only info that we have: 2. It is illegal for any two firms...
This is the only info that we have: 2. It is illegal for any two firms that sell similar products to engage in price fixing agreements. Violating the anti-trust laws can bring both civil and criminal prosecutions. Nevertheless, price fixing does take place. Examples would be found at the service plazas along the NY State Thruway and the NJ Turnpike. Each location has a small number of fast food restaurants. Each fast food restaurant belongs to a different firm, which...
THERE IS NO MORE INFO, ONLY THIS, THANK YOU 2. It is illegal for any two...
THERE IS NO MORE INFO, ONLY THIS, THANK YOU 2. It is illegal for any two firms that sell similar products to engage in price fixing agreements. Violating the anti-trust laws can bring both civil and criminal prosecutions. Nevertheless, price fixing does take place. Examples would be found at the service plazas along the NY State Thruway and the NJ Turnpike. Each location has a small number of fast-food restaurants. Each fast-food restaurant belongs to a different firm, which should...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT