P

@Pradyun101613

Use of Built-In numbers with functions

Python
1 day ago
# You have been using variables and data types to solve the different problem statements. # Imagine if you did not have to worry about some of the operations, and it got done by the snap of a finger. # Well!! Python can definitely help you. # Want

Browine Point

Python
1 day ago
# Math πrate and Sam are extremely happy to have completed their quests. # Now they are aiming for brownie points. # Are you ready to help them? ''' Task 1: Field Trip ''' print("***** Task 1: *****") print() # A teacher is planning a school trip

use of break and continue statements

Python
1 week ago
# Math πrate and Sam have been given a problem statement. # Print all the numbers between 1 to 100 except multiples of 5 using for loops? # Are you ready to help them? ''' Task 1: To continue or not ''' print("***** Task 1: *****") print() # Write

Nested For Loops

Python
2 weeks ago
# Math πrate and Sam have reached the finale of their quest. # They need your help. Are you ready? ''' Task 1: Number Match''' print("***** Task 1: *****") print() # In this round, you need to print the below pattern: # 1 2 3 4 5 # 1 2 3 4 5 # 1 2

Create MadLib

Python
2 weeks ago
# Math πrate is excited with what he has achieved and now is ready to take the final game challenge # Let's get started in helping him create some fun games '''Task 1: Mad Lib''' print("**** Task 1: ****") print() # Have you heard of the MadLib ga

Quests of challenges

Python
3 weeks ago
# Math πrate has been completing each and every quest with the help of Sam and you. # Now he is ready to take up more real time challenges . # Ready to help? '''Task 1: Quest for Multiplication Table''' print("***** Task 1: *****") print() # Math

For loops with Strings

Python
3 weeks ago
# Math πrate has been successful with the Numbers quest and is extremely thankful to you # Next he has to take up the quest with strings # Are you ready to help him? '''Task 1: Get Looping ''' print("**** Task 1: ****") print() # Math πrate is in

Introduction to For Loops

Python
4 weeks ago
# Sam wants you to meet his friend Math πrate. # Math πrate is taking part in a coding quest, and wants you to join in that quest. # Sam told his Math πrate friend that you are very good at coding. # So are you ready to get on to the quest? ''' T

Python Mystery

Python
4 weeks ago
# Have you tried writing the same program multiple ways? # If yes, can you tell me about them? # Do you end up using all the programs or pick one over the other? Why? # Let's explore the same with some of the programs you have written in this sess

Learning Break Command

Python
1 month ago
# When you have to send a gift to your friend or relative living in another city, what do you do? # One uses the courier service in such scenarios. Can you name some of the courier companies? # Lets create a program that will help the courier serv

Learning Break Command

Python
1 month ago
# When you have to send a gift to your friend or relative living in another city, what do you do? # One uses the courier service in such scenarios. Can you name some of the courier companies? # Lets create a program that will help the courier serv

Use of Nested For loops in drawing

Python
2 months ago
# Have you had to stand in a queue at a billing counter, when you just had to bill for two items? # Well, what if we had an express billing counter, wherein one could bill for 10 or less items # Shall we create a program to do this? '''Task 1: Cal

Use of While Loops to solve Mathematical Problems

Python
2 months ago
# Have you wondered what would happen if you had an infinite loop? # It is important to break away from an infinite loop else, the computer keep processing without any end # Let us take a look at some programs that help break from a loop '''Task 1

Use of While Loops to solve Mathematical Problems

Python
2 months ago
# Have you wondered what would happen if you had an infinite loop? # It is important to break away from an infinite loop else, the computer keep processing without any end # Let us take a look at some programs that help break from a loop '''Task 1

Use of if/else in while loops.

Python
2 months ago
# Have you been to a game arcade? # Which of the games are your favourite? # Are you ready to design one? ''' Task 1: Number Buzzer Game''' print("**** Task 1: ****") print() # Write a “Guess the Number” game, where a player has to guess a number

Use of While Loops to solve Mathematical Problems

Python
2 months ago
# Have you wondered what would happen if you had an infinite loop? # It is important to break away from an infinite loop else, the computer keep processing without any end # Let us take a look at some programs that help break from a loop '''Task 1

Practicing While Loops

Python
2 months ago
# In one of the previous lessons, you used the print statement to create text art. # Imagine using the while loop command and the print statements to generate some really awesome text art. # Let's help Sam create some great text art. All set to give

Learning While Loops

Python
2 months ago
# Sam is slowly realising that he can solve Maths problems with while loops. # So he wants you to help him with them. # Are you ready to help him? ''' Task 1: Multiplication Table Generator ''' print("**** Task 1: ****") print() # Sam wants you to w

Times table

Python
2 months ago
#Homework b = 0 s = int(input("Enter a number:\n")) x = int(input("Enter the number for the final factor:\n")) while b != (x+1): print(f"{s}×{b} = {s*b}") b+=1

Use of While Loops

Python
2 months ago
# Sam, your friend wants to print his dog's name,Snoopy, five times. # He asks you to help him, as you are learning to code in Python # Can you help him? '''Task 1: Repetition''' print("**** Task 1: ****") print() # What is the statement you would u