Python_Functions
def function_display_details(person_name, number): a = 1 while (a <= number): print(f"Hello, {person_name}") a = a + 1 else: print(f"I have printed {person_name} {number} times") function_display_details("Tvisha", 2) function_display_details("Tejasvi", 3) function_display_details("Damodar", 4) function_display_details("Vijaya", 5) #______________________________________________________________________________________________________________________ #Ex: Write a function to 1. display number as long as it is less than value of 10. 2. Use the While loop and without any built-in functions like range(). 3. Write the numbers in the format - 1, 2, 3, 4, 5, 6, 7, 8, 9,10 def display_number(number): a = 1 while (a <= number): print(a, end+",") a = a + 1 else: print("Loop completed") display_number(10): _________________________________...