24 followers
Python Developer@Codeclause Mentee @Trailhead Salesforce Content Executive @GDSC SIT'22-23 Google Women Techmakers Ambassador @Google WTM Coreteam @ GirlScript Kolkata
🐍What is Python Programming? Python is a high-level, interpreted programming language that is known for its simplicity, readability, and ease of use....
📌Introduction to PLCs : 📝Definition and purpose of PLCs : A Programmable Logic Controller (PLC) is a specialized computing device used in industrial...
Write a Python program to find the largest palindrome made from the product of two n-digit numbers. #Write a Python program to find the largest...
Write a Python program to count the number of occurrences of a given element in a given list. def count_occurrences(lst, element_to_count): count...
Write a Python program to find the common elements between three given lists: list1 = [1, 2, 3, 4, 5] list2 = [3, 4, 5, 6, 7] list3 = [5, 6, 7, 8,...
Write a Python program to find the median of a given list of numbers: numbers = [5, 2, 9, 1, 5, 6] numbers.sort() n = len(numbers) if n % 2 ==...