Shrey Dikshantshreysblog.hashnode.dev·Jul 27, 2024Mastering Repl.it: A Comprehensive Guide for BeginnersWelcome to the world of Repl.it! Whether you're a seasoned developer or just starting, Repl.it offers an easy-to-use, cloud-based platform for coding, collaboration, and learning. This guide will walk you through the essentials of getting started wit...repl.it
Ajay Vikhram S Msmavisswag.hashnode.dev·Jun 9, 2023What is a Palindrome ?A palindrome is a symmetrical word, (i.e. it reads the same backward as forwards). For example: racecar madam radar Now that we know what is a palindrome we can write a code in Python for the same. def palindrome(word): if len(word)<=1: re...Python
Ibitomi Theophilusdatapythonist.hashnode.dev·Jun 7, 2023Day 9: 100 Days of Python##DAY 9 100DAYS OF PYTHON print("GENERATION GENERATOR") Age = int(input("what year were you born? ")) if Age >= 1925 and Age <= 1946: print ("You are a traditionalist") elif Age >= 1947 and Age <= 1964: print ("You are Baby boomer") elif Age >= ...Python 3
Ajay Vikhram S Msmavisswag.hashnode.dev·Jun 5, 2023Recursion in PythonWhat is Recursion? It's a type of program where you get a subroutine to call itself. Recursion Helps to Solve problems more humanly, some mathematical problems can be better solved using recursion. A Small Example: def reverse(value): if value <=...67 readsPython
Taofeek Raheemtaosheeda.hashnode.dev·Apr 4, 2023Building a Hangman game Using PythonBeing a game enthusiast, part of my career goal is to develop and code my own game be it actions, arcades, adventures or a simple logic game. As a lover of games, I spent a lot of time brainstorming on how to code a game. Have you ever tried to try t...python projects
akash zadeakash-zade.hashnode.dev·Jan 14, 2023Python Data Types and Data Structures for DevOpsData Types Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Since everything is an object in Python programming, data types are clas...34 readsPython
JavaUwUjavauwu.hashnode.dev·Oct 10, 2022100 Days of Python - Day 1100 Days of Code Today I will start my 100 days of code journey! For this journey I have decided to learn Python with Replit.com.During this journey I will write daily blog articles with my progress and will explain what I've learned so far. Goal of ...#replit100daysofcode