Question: python b) counting by fractions of an integer Using a for loop, implement a function named tenths that takes an argument xmax and prints out
python
b) counting by fractions of an integer Using a for loop, implement a function named tenths that takes an argument xmax and prints out the values of x? x/2 for x=0.1,0.2, 0.3, ... , Xmax (inclusive). You may assume that Xmax is a positive integer multiple of 0.1. [60]: def tenths(x_max): [61]: # Self-check: Execute this immediately after executing your solution cell above it, # and verify that the first number printed is *8.0", the last number printed is *0.5", # and that eleven numbers total are printed. tenths(1.0)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
