Library function
Qus. 1 : <p>Choose the correct function declaration of fun1() so that we can execute the following two function calls successfully.</p><pre style="font-size: 12.6px; letter-spacing: 0.14px;">fun1(25, 75, 55)<br>fun1(10, 20)</pre>
- def fun1(**kwargs)
- def fun1(args*)
- No, it is not possible in Python
- def fun1(*data)
- Lists
- Dictionary
- String
- All of the mentioned
Programs
Python program to convert decimal into other number systems
python program that generates six random numbers in a sequence created with start stop step
Python program to illustrate the global variable
python program to create a function to calculate factorial value
Python program to find the sum of factorial upto n terms using function
python program to create a function for reverse the number
Python program to check number is Palindrome or not using function
Python program to create a function for calculating sum of digit
Python program to create recursive function to find factorial
python function to accept 2 number and return addition subtraction multiplication and division
python function to accept number of days and return week and days to its equivalent
python function to extract the day month year from given date
Python function to find the sum of all numbers between 100 and 500 which are divisible by 2
Python function to get two matrices and multiply them
python recursive function to find the sum of digits
python recursive function to print the reverse of number
Write a function with name dividebyfive which generate and prints a random integer number from the range 0 to 100 and then return True if the randomly generated number is divisible by 5, and False otherwise.