Vyankateshwar Taikarvtaikar.hashnode.dev·Nov 22, 2023Introduction To PythonGetting Started with Python 🌠What is Python? Python is Open source, general purpose, high-level, and object-oriented programming language. Guido van Rossum developed Python Python consists of vast libraries and various frameworks like Django, Ten...Discuss·50 reads#easywaytolearnpython
Priya Chakrabortypriyachakraborty.hashnode.dev·Oct 27, 2023DAY 28 of PYTHON top 100 questions : from Basic to Advanced !!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 palindrome made from the product of two n-digit numbers. def is_palindrome(number): return str(number...DiscussPython 3
El-Karece AsieduforPython Ghana's Blogblog.pythonghana.org·Oct 25, 2023Everything Python: Beginner Friendly EditionOn the 14th of October, 2023, Python Accra organized a remarkable webinar designed to be a guiding light for newcomers embarking on their Python journey. The event kicked off at noon, with El-Karece Asiedu, a Python Accra co-lead, introducing the the...Discuss·35 readsCommunityPython
Elucian MoiseforProgramming Languagessagecode.hashnode.dev·Oct 17, 2023Python BasicsHere is a summary of the basics of Python: Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. It has a simple and easy-to-learn syntax. Some key syntax elements: Uses indentation, rather than braces ...DiscussPython SyntaxBasics of Python
Priya Chakrabortypriyachakraborty.hashnode.dev·Oct 17, 2023DAY 27 of PYTHON top 100 questions : from Basic to Advanced !!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 = 0 for item in lst: if item == element_to_count: count += 1 return coun...DiscussPython
Priya Chakrabortypriyachakraborty.hashnode.dev·Oct 15, 2023DAY 26 of PYTHON top 100 questions : from Basic to Advanced !!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, 9] set1 = set(list1) set2 = set(list2) set3 = set(list3) common_elements = set1.intersection(set2, set3...DiscussPython
Priya Chakrabortypriyachakraborty.hashnode.dev·Oct 12, 2023DAY 25 of PYTHON top 100 questions : from Basic to Advanced !!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 == 0: middle1 = numbers[n // 2 - 1] middle2 = numbers[n // 2] median = (middle1 + middle2) ...DiscussPython
priyanka varshneypriyavars.hashnode.dev·Oct 12, 2023Day-13 & Day-14: Basics of PythonWhat is Python? Python is a popular open-source programming language created by Guido van Rossum. It's used for web development, machine learning, and many other modern technologies due to its simplicity and versatility. Python is a high-level langua...DiscussBasics of Python
Riddhi Shinderiddhishinde.hashnode.dev·Oct 12, 2023From Integers to Strings: Mastering Python's Data TypesWelcome back to the exciting world of Python, where every line of code is an opportunity for creativity. In our previous post, we unlocked the mysteries of Python variables—your trusty sidekicks in the programming adventure. Now, it's time to dive de...Discusspython beginner
Priya Chakrabortypriyachakraborty.hashnode.dev·Sep 25, 2023DAY 24 of PYTHON top 100 questions : from Basic to Advanced !!Write a Python program to find the length of the longest substring without repeating characters in a given string input_string = "abcabcbb" char_index = {} max_length = 0 start = 0 for end in range(len(input_string)): if input_string[end] in ch...Discuss·29 readsPython