Python

161 Articles 5 Followers


How to use List Comprehension in Python?

30 Jul 2021 2 minute read 0 comments Amit Kumar1

Hi Guys, In this tutorial I'm going to cover:    1. What is List Comprehension?    2. Advantages of List Comprehension.    3. How to understand and write efficient List Comprehension (we will mostly focus here).   1.What is List Comprehension? List C...

Let's get this Party Started (A Proposed Introduction to EE and CS)

27 Jul 2021 1 minute read 0 comments Great White Snark

This blog is primarily going to be for my own reference/a repository for my study notes as I attempt to give myself a proper Computer Science and Electrical Engineering education and upskill. Seeing as I messed around during my high school and Varsit...

Python Hello world!!

19 Jul 2021 1 minute read 0 comments Amit Kumar1

Hey There! This post will cover how to code in python using python shell or by creating a .py file i.e to write a basic program.let's get to it then! Once python is installed in your system, you can open a command window and type `python` to open the...

Why Python for coding?

18 Jul 2021 3 minute read 1 comment Amit Kumar1

Hey there! This post is meant for someone who is new to Python or someone who wants to get an overview. I will be covering a basic overview of Python and its use-cases. Topics covered: Python programming language. Why is there a lot of buzz about Py...

Would you like to learn to program the blockchain?

9 Jul 2021 1 minute read 0 comments Great White Snark

Seeing as I have a lot of time on my hands when not trying to hustle together enough fiat to pump into crypto and sustain me (and I stuffed around instead  of taking my education seriously), I have decided that I should upskill by going back to basic...

Learning to code - Day 1

4 Jun 2021 1 minute read 2 comments skylinebuds

[Imagesource]() When it comes to this year I am sure I am not the only one looking for other means of work. I for one have been looking and waiting even before covid to change my job. With that, I have been waiting to change my job and learn to code...

Mr Blogger : Blog script to start your blogging experience

26 Apr 2021 1 minute read 0 comments Mr. Smart

Over View: Mr Blogger is a under development script that can be used to make your own blog . As Wordpress this is also a blogging framework which will be available open source so that everyone wishing to run his own blog can use this script for absol...

Py Learning Companion: A Python Study App

26 Apr 2021 1 minute read 0 comments _Almin_

Just a quick post today for anyone who is interested in learning Python. Py Learning Companion is a Python study app that covers the core concepts in 33 short lessons. Each lesson ends with a multiple choice question based on the material covered. Th...

Convert Python Code to EXE

18 Apr 2021 2 minute read 0 comments _Almin_

This guide will help you convert your Python code into a standalone executable file using cx_Freeze.  I will assume that you already have a program ready to go.Step 1Install cx_FreezeYou can install cx_Freeze using pippip install cx_FreezeStep 2Creat...

Python pt.2 (how to add or delete stuff from lists)

16 Apr 2021 1 minute read 0 comments ZeusXx

    Today I will teach you how to insert stuff in to list or how to delete stuff from the list. So first we need to have a list and it is simple to make! workdays = ["monday","tuesday","thursday","firday","saturday"] So here is our list, first to m...