Skip to main content

Posts

Project - 6 | Upgrade a Throw Dice and Coin Flip Game of Project 3 in which dice can able to give value between 1 to 6 and coin can able to give either heads or tails side of coin

  Inputs: Game (Throw Dice or Coin Flip) Old Resources:   ®     print, input, comments, variables and F-string   ®     Arithmetic operators   ®     Data types, round function, type conversion,   ®     Assignment, Logical and comparison operators   ®     Value manipulation and conditional statements     ®     Random Module   ®     Lists and List Manipulation   ®     Dictionary and Dictionary Manipulation   ®     For Loop   ®     While Loop New Resources:   ®     User-Defined Functions First Develop, and compare to Akash’s Code. Akash's Code Link You can share your development, code file or queries to PBA Team, by mail it on  poweredbyakashteam@gmail.com  or by WhatsApp it on 9016048986

Project - 5 | Upgrade the Arithmetic Calculator of Project 2 which can able to do operations like addition, subtraction, multiplication and division with single input

Inputs: Single Equation Old Resources:   ®     print, input, comments, variables and F-string   ®     Arithmetic operators   ®     Data types, round function, type conversion,   ®     Assignment, Logical and comparison operators   ®     Value manipulation and conditional statements     ®     Lists and List Manipulation   ®     Dictionary and Dictionary Manipulation   ®     For Loop New Resources:   ®     Priority Theory     ®     User-Defined Functions First Develop, and compare to Akash’s Code. Akash's Code Link You can share your development, code file or queries to PBA Team, by mail it on  poweredbyakashteam@gmail.com  or by WhatsApp it on 9016048986

Project - 4 | Upgrade the Arithmetic Calculator of Project 2 which can able to do operations like addition, subtraction, multiplication and division

  Inputs: 2-Number and operation(+,-,*,/) Old Resources:   ®     print, input, comments, variables and F-string   ®     Arithmetic operators   ®     Data types, round function, type conversion,   ®     Assignment, Logical and comparison operators   ®     Value manipulation and conditional statements     ®     Lists and List Manipulation   ®     Dictionary and Dictionary Manipulation   ®     For Loop New Resources:   ®     User-Defined Functions First Develop, and compare to Akash’s Code. Akash's Code Link You can share your development, code file or queries to PBA Team, by mail it on  poweredbyakashteam@gmail.com  or by WhatsApp it on 9016048986

User Defined Function | Python Programming By Akash

1.    Functions: Definition: It is a named block of code that performs a specific task. Instead of writing the same code again and again, we define it once and can use (call) it multiple times anywhere in the program. It runs only when we explicitly 'call' it. Types of Functions: a.    Buit-in Functions: These are pre-defined functions that come with Python. You don't need to write the code for them; you just use them. b.    User-Defined Functions: These are functions that we create ourselves using the def keyword to solve our specific problems. c.    Anonymous Functions: These are short, one-line functions that do not have a name. They are used for quick, short tasks. 2.    User-Defined Functions: Definition: These are functions that you create to perform a specific task relevant to your software. While Python gives you general tools (like print ), User-Defined Functions are the custom tools you build for your specific j...

Project - 3 | Develop a Throw Dice and Coin Flip Game in which dice can able to give value between 1 to 6 and coin can able to give either heads or tails side of coin

Inputs: Game (Throw Dice or Coin Flip) Resources:   ®     print, input, comments, variables and F-string   ®     Arithmetic operators   ®     Data types, round function, type conversion,   ®     Assignment, Logical and comparison operators   ®     Value manipulation and conditional statements     ®     Random Module   ®     Lists and List Manipulation   ®     Dictionary and Dictionary Manipulation   ®     For Loop   ®     While Loop First Develop, and compare to Akash’s Code. Akash's Code Link You can share your development, code file or queries to PBA Team, by mail it on  poweredbyakashteam@gmail.com  or by WhatsApp it on 9016048986

Project - 2 | Upgrade a Simple Arithmetic Calculator of Project 1 which can able to do operations like addition, subtraction, multiplication and division

  Inputs: 2-Number and operation(+,-,*,/) Old Resources:   ®     print, input, comments, variables and F-string   ®     Arithmetic operators   ®     Data types, round function, type conversion,   ®     Assignment, Logical and comparison operators   ®     Value manipulation and conditional statements   New Resources:   ®     Lists and List Manipulation   ®     Dictionary and Dictionary Manipulation   ®     For Loop First Develop, and compare to Akash’s Code. Akash's Code Link You can share your development, code file or queries to PBA Team, by mail it on  poweredbyakashteam@gmail.com  or by WhatsApp it on 9016048986

Loops in Python Programming Language | Python Programming By Akash

  1.     Loops (Concept): Definition: A Loop is a programming concept that allows you to repeat a block of code multiple times without writing the same code over and over again. It is the ultimate tool for Automation. Instead of saying 'Do this, then do this, then do this...', you say 'Do this 100 times'. The Two Main Types: 1.      For Loop: Used when you know exactly how many times you want to repeat something (e.g., "Run 5 laps"). 2.      While Loop: Used when you want to repeat until a condition changes (e.g., "Run until you get tired"). 2.    Membership Operators: Definition: These are special keywords used to test if a specific item is present inside a collection (like a List, String, or Tuple). They act like a 'Search' tool that returns a simple True or False . The Syntax: There are two operators: a.    in : § Returns True if the value is found inside the list. § Returns ...