Python Basics Assignment
Assignment 1: Write a python script which will be able to accept the data on command line as input and will be able to identify and print out the datatype of the given input.
Assignment 2: Write a python program to print out the Fibonacci series of digits between 1 to 100. Try to achieve this using all the types of loop available in python.
Assignment 3: Traversing through below list of digits, filter out the numbers which are divisible by 5.
Assignment 4: Write a python program which keeps reading content from command line until the content is 'quit', and then writes the content before quit to a file.
Assignment 5: Write a program in Python which will be able to accept any number of arguments in the same function and can process it.
Assignment 6: Write a program which will be able to accept Student data with help of different functions, to eventually store all data in one dictionary, and finally print out all content of that dictionary variable.
Assignment 7: Write a python program which contains a dictionary with specific data. The script should accept the key name from command line and output its value from the dict. When specific key is not present in dict, it should give a specific message rather than throwing error and abruptly stopping execution and ask for next input.
Assignment 8: Perform the same task as in assignment 5, but with the help of class and its object.
Assignment 9: Write a Python script to automate generating Git PAT for a user Requirements: