RoninKingroninking.hashnode.dev·Sep 30, 2023Day 4 - 6: My Journey To Becoming A Python ProgrammerDay 4. On day 4 we learnt about the random module, how it works and the kind of things you can do with it. Throughout the lesson, we learned the basics and incorporated them into all sorts of exercises. From the basic heads and tails program to an ex...DiscussPython
Amrutha Damruthadronamraju.hashnode.dev·Sep 29, 2023Python Interview Q/ABasics of Python: What is Python? Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language used for various purposes, including web development, software development, mathematics operations, and more....DiscussPython
CodeItBrocodeitbro.hashnode.dev·Sep 29, 2023Python Lists TutorialWith its simplicity and versatility, Python has become a go-to language for programmers across various domains. One of its most fundamental and powerful data structures is the list. In this blog post, we'll delve into the intricacies of Python lists,...DiscussPython
RoninKingroninking.hashnode.dev·Sep 29, 2023Day 1 - 3: My Journey To Becoming A Python ProgrammerOn day 1, I created a new email address dedicated to studying and everything having to do with my programming journey. I created a Udemy account, FreeCodeCamp account and Codecademy account. During this setup stage, I got fortunate and came across a ...DiscussPython
Hammad Raza Khanhammadrk.hashnode.dev·Sep 28, 2023Solution to Q2 Level -1#Solution - def animal_crackers(str): text= str.lower().split() #print(text) return text[0][0]==text[1][0] print(animal_crackers('Clever rat')) print(animal_crackers('Pink Parrot'))DiscussCHALLENGENED QUESTIONS FOR PYTHON BASICS (UDEMY)! HOW MUCH DID YOU GET RIGHT ?!Python
Hammad Raza Khanhammadrk.hashnode.dev·Sep 28, 2023Level 2Write a function that takes a two-word string and returns True if both words begin with the same letter animal_crackers ('Levelheaded Llama') --> True animal_crackers ('Crazy Kangaroo') --> FalseDiscussCHALLENGENED QUESTIONS FOR PYTHON BASICS (UDEMY)! HOW MUCH DID YOU GET RIGHT ?!Python
bla bla blablablabla.hashnode.dev·Sep 28, 2023Basics of pythonprint("Hello World !") if_else.py score = int(input("Enter your score: ")); if score >= 40 : print("Good score!"); elif score <= 30: print("Try again!"); elif score in range(31, 39) : print("average score!"); else: print("Enter valid integer!");...DiscussPython
Iano Njugunaianonjuguna.hashnode.dev·Sep 27, 2023Conditional Statements in PythonIntroduction Conditionals are statements that allow you to make decisions based on certain conditions or criteria (Jeremiah, 2023). They are essential in any program's control flow. Control flow is the order in which individual statements, instructio...DiscussPython
CodingSplashcodingsplash.hashnode.dev·Sep 27, 2023Day11- String Methods # 1String Methods in Python: Python provides a set of built-in methods that we can use to alter and modify the strings. Strings are immutable - it means that it creates a new string, which means it does not change the existing string. Following are the ...DiscussPython
Madhu Mh2kinfosys.hashnode.dev·Sep 27, 2023Best Beginner Course for Python at H2kInfosysIn today's rapidly evolving tech landscape, Python has emerged as a dominant programming language. Whether you're a beginner looking to dive into coding or an experienced developer aiming to expand your skill set, finding the best Python course is cr...Discuss·1 likeOnline Courses for Python