Write a function named digit_count that takes one parameter

Assignment Help Python Programming
Reference no: EM132080119

You need help writing two different functions in python. Python only please!

The first function -

Write a function named digit_count that takes one parameter that is a number (int or float) and returns a count of even digits, a count of odd digits, and a count of zeros that are to the left of the decimal point.

Return the three counts in that order: even_count, odd_count, zero_count.

Be careful of the "edge case" where the number starts with a decimal point-conversion of such a number to a string places a zero before the decimal point.

See correct behavior in the final test case below.

For example:

digit_count(1234567890123)

returns (5, 7, 1)

digit_count(123400.345)

returns (2, 2, 2)

print(digit_count(123.))

returns (1, 2, 0)

print(digit_count(.123))

returns (0, 0, 0)

The second function -

Write a function named float_check that takes one parameter that is a string and returns True if the string represents a float and False otherwise. For this function we define a float to be a string of digits that has at most one decimal point. Note that under this definition an integer argument will return True. Remember "edge cases" such as "45." or ".45"; both should return True.

For example:

float_check('1234')

returns True

float_check('123.45')

returns True

float_check('123.45.67')

returns False

float_check('34e46')

returns False

float_check('.45')

returns True

float_check('45.')

returns True

float_check('45..')

returns False

Need help writing those two functions as described in python.

Reference no: EM132080119

Questions Cloud

Assume a frictionless surface : Assume a frictionless surface (so the ball slides without rotating). The acceleration due to gravity is 9.81 m/s2..
Write a program that prompts the user to enter the customer : Write a program that prompts the user to enter the customer first and last name, hourly rate, the total consulting time, and income.
Write a program that will check java file for syntax errors : Write a program that will check Java file for syntax errors. The program will ask for an input-file name and output-file name and will then copy.
Which bucket holds more water : The weight of the rod and empty buckets are negligible compared to the weight of the water. Which bucket holds more water?
Write a function named digit_count that takes one parameter : Write a function named digit_count that takes one parameter that is a number (int or float) and returns a count of even digits, a count of odd digits.
Write r code that implement benjamini-hochberg procedure : Given the data below write R code that implement Benjamini-Hochberg procedure to control false discovery rate without using package.
What is the efficiency of the engine : In one cycle, a heat engine does 380 J of work and releases 700 J of heat to a lower-temperature reservoir.
Average velocity vrms equal to the moon : At what temperature would hydrogen molecules (molecular mass is equal to 2.016 g/mol) have an average velocity Vrms equal to the Moon's escape velocity?
Explain why the speed of sound is faster in solids : Explain why the speed of sound is faster in solids than in gases. Include two other factors what can the speed of sound depend onthe speed of sound can depend o

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd