Write a python function that takes list as an input and converts it into tuple
Topic: Write a python function that takes list as an input and converts it into tuple
Solution
def convert(list): return tuple(list)
List all Python Programs
Solution
def convert(list): return tuple(list)