yes sir i have got it without looking in git hub I just start coding yesterday, this video is very helpful. Code number = int(input('Enter a number:')) count = 10 while count >= 1: product = number * count print (number, 'x', count, '=', product) count = count - 1
for the programing task you can also do ; number = int(input("enter the number: ")) count = 10 while count =1 : product = number * count print(number,"*",count,"=",product) count -= 1 hope it works for you all too
HEY ved it works ...i have seen what i was missing. but remove the -= to - number = int(input('Enter number:')) count = 10 while count >= 1: product= number* count print(number,'x',count,'=',product) count= count-1 .Happy coding!!!!
Programiz always is helpful for a beginner to learn and understand coding concepts! Looking forward to learning some more advanced concepts with better clarity and approach as always by tutor(Punit).
num=int(input("enter the number:")) i=1 while i #while loop executes n no of steps in more than one line #print("Thank you sir, for your brilliant teaching")
Yes, I do know most of you know the answer to make a reversed table of a number table = int(input('Enter a number for multiplication')) count = 10 while count >= 1: answer = table*count print(table, "*", count, "=" ,answer) count -= 1
table = int(input('Enter a number for multiplication')) count = 10 while count >= 1: answer = table*count print(table, "*", count, "=" ,answer) count= count-1 GREAT TUTORIAL: you guys rock!!!
brazil must be closer to india. we have very much to learn with you, brother. your polite, cool and very simply way to talk. that made us very comfortable to learn. thanx a lot buy sharing knowlodge. i wish to you and your people much luck and much health. fraternal hugs from a brazilian brother
Learning Python is something you would like to get in your skills, but you do not know where to start? This NEW channel will help you out leaning Python Programming from scratch - for complete Beginners, Intermediate and Advanced Levels
Thank you sir for amazing teaching... Answer of the question no= int(input("enter ur no.")) now=10 while now >= 1: pro= no * now print(no , "x" , now , "=" , pro) now = now-1
##for that reverse table of 6 : num=int(input("Enter your number:")) count= 10 while count >= 0 : product = number * count print(num, "x" , count, "=" , product) count = count - 1 I wrote this code and it worked! Thanks for the video!!!!!!!!!!!!! ^_^
reverse table def adi (): num= int(input("enter a number : ")) print ("multiplication table of " , num , "is :-" ) n = 10 while n >= 0: pro= num * n print(num , "x", n, "=", pro) n-=1
>>> adi() enter a number : 9 multiplication table of 9 is :- 9 x 10 = 90 9 x 9 = 81 9 x 8 = 72 9 x 7 = 63 9 x 6 = 54 9 x 5 = 45 9 x 4 = 36 9 x 3 = 27 9 x 2 = 18 9 x 1 = 9 9 x 0 = 0
Thank you! clean explanation so that I can complete a hw assignment! before I watch the next vid on "for loops" good rec on the app! love the option being able to continue learning :)
I am a beginner in python!(aslo i have a doubt!) How to add loop when an operation is executed,i mean if i executed a sum on calculator (made by me through python) then i made a statement which says that if the calculation is over then type "y" and if not (if they want to continue solving sums) then type "n" then,how can i loop that python code for calculator by to loop / for loop??? Please help me out!
answer for the practice question : number = int(input("enter the number: ")) count = 10 while count>0: product = number*count print(number, "*", count, "=", product) count = count - 1
There is no way to end a loop from outside. Did you check the break statement? It can be used to end the loops abruptly without checking the test condition. Maybe it can fix your issue.
how to repeat full program using an element input as an indicator by the user ? I am actually building a calculator which can output a remainder or quotient of two numbers, i want to kmow how to repeat the full program so that the user might not need to run it again and he can rerun just by inputing an element.
answer to the 8.13 number = int(input("enter a number: ")) count= 10 while count >0: product = count * number print(number, '*', count, "=" , product) count = count -1
I GOT THE CODE THAT WORKS! number = int(input("Enter a Number 1 Through 12: ")) count = 12 while count >= 1: product = number * count print(number, "x", count, "=", product) count = count - 1
#printing table in reverse order num=int(input("Enter a number")) count=10 while count>=1: product=count*num print(num,'x',count,'=',product) count=count-1
🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges.
Try Programiz PRO: bit.ly/right-python
I'm new to programming and I actually find your tutoring awesome.
Thank you.
Best TH-cam teacher . Thank you for the wonderful video with Tasks.... your way of speaking is awesome.
yes sir i have got it without looking in git hub
I just start coding yesterday, this video is very helpful. Code
number = int(input('Enter a number:'))
count = 10
while count >= 1:
product = number * count
print (number, 'x', count, '=', product)
count = count - 1
8:18 I have completed the programing task myself thank you for your explanation and ur support
for the programing task you can also do ;
number = int(input("enter the number: "))
count = 10
while count =1 :
product = number * count
print(number,"*",count,"=",product)
count -= 1
hope it works for you all too
thanks it helped me i was doing while count = 1
@@fookivansh4667 yeah sure buddy 🙏
I haven't used "and" but made the answer changing 1 to 10 and 10 to 1. Also less that or equal to to greater than or equal to.
really I loved this channel
This guy is the best teacher ever!
Yeah like how is he so good God dam
Honestly sir! Your lessons are so clear and well laid out, thank you so much!!
8:30 Solution:
# Multiplication table reverse order
num = int(input("Enter a number: "))
count = 10
while (count >= 1):
print(num, "*", count, "=", (num * count))
count -= 1
HEY ved it works ...i have seen what i was missing. but remove the -= to -
number = int(input('Enter number:'))
count = 10
while count >= 1:
product= number* count
print(number,'x',count,'=',product)
count= count-1
.Happy coding!!!!
Programiz always is helpful for a beginner to learn and understand coding concepts! Looking forward to learning some more advanced concepts with better clarity and approach as always by tutor(Punit).
**pythan program**
While(You make video)
{
print("You channel grow very soon")
}
if(You stop Teaching)
{
print("Please continue Teaching")
}
**C program**
#include
int main()
{
int choose;
do{
while(You teaching)
{
printf("You channel grow very fast");
if(You stop teaching)
{
printf("presh 1 for continue Teaching");
scanf("%d",&choose);
} while(choose);
return 0;
}
great..
8:36
number = int(input("enter number: "))
count = 10
while count >= 1:
product = number * count
print(number, "X", count, "=", product)
count = count - 1
Something I thought I understood months ago, after watching this, I made conclusions that I haven't understood it better, until now.
a=int(input("enter a number:"))
count=10
while count >= 1:
pro=count*a
print(a, "X", count, "=", pro)
count=count-1
one time correct
num=int(input("enter the number:"))
i=1
while i
#while loop executes n no of steps in more than one line
#print("Thank you sir, for your brilliant teaching")
Yes, I do know most of you know the answer to make a reversed table of a number
table = int(input('Enter a number for multiplication'))
count = 10
while count >= 1:
answer = table*count
print(table, "*", count, "=" ,answer)
count -= 1
table = int(input('Enter a number for multiplication'))
count = 10
while count >= 1:
answer = table*count
print(table, "*", count, "=" ,answer)
count= count-1
GREAT TUTORIAL: you guys rock!!!
count = 1
number = int(input("Enter a number: "))
while count
Great Explanation Bro!! pehli baar while function samajh main aaya...great job..
brazil must be closer to india. we have very much to learn with you, brother. your polite, cool and very simply way to talk. that made us very comfortable to learn. thanx a lot buy sharing knowlodge. i wish to you and your people much luck and much health. fraternal hugs from a brazilian brother
#TASK
number = int(input("enter a number: "))
count = 10
while count >= 1:
product = (number * count)
print(number, "x" ,count, "=", product)
count = count - 1
Correct
Thanks For Code 😊🙏🏻
@@choureabhishek7512 You're welcome
These vids are some of the best learning material I've ever seen!
actually you are awesome. probably the best youtube programmer
Sir please continue this series .And please make advance topic aswell.Big thank you for the content.
Learning Python is something you would like to get in your skills, but you do not know where to start? This NEW channel will help you out leaning Python Programming from scratch - for complete Beginners, Intermediate and Advanced Levels
this was very helpful and i also found it better to predict what youre going to do before you do it to see if I've learned
Thank you sir for amazing teaching...
Answer of the question
no= int(input("enter ur no."))
now=10
while now >= 1:
pro= no * now
print(no , "x" , now , "=" , pro)
now = now-1
fun little random additions:
main_loop = True
import time
while main_loop:
number = input('Number: ')
try: # executes test block below to check for errors
int(number)
loop_condition = True
main_loop = False
time.sleep(0.5) # delays program for dramatic effect
print('Calculating...')
time.sleep(1.2)
except ValueError:
print('Please enter integer value only')
loop_condition = False
loop_count = 0
count = 10
while loop_condition and loop_count < 10:
multiple = int(number) * count
print(str(number), '*', str(count), '=', multiple)
count -= 1
loop_count += 1
You are the best teacher 🙂.
Concepts are awesome ✨
Absolutely Beautiful Lectures ..
Very nice video,easy to understand. Keep up the good work. God Bless You!
Best explanation
Thanks sir.....
8:24
n = int(input("write down the number : "))
count = 10
while count > 0:
product = n * count
print(n, "x", count, "=", product)
count = count - 1
these videos are very helpful, you got my sub
a = int(input("Enter your number > "))
b = 11
while b>=2:
b = b-1
c = a * b
print(a,"X",b,"=",c)
num = int(input(''Enter a number = ''))
sum = 0
for x in range(1,num+1):
sum = sum + x
print(x ,end=' ')
if x < num:
print("+",end=" ")
print("=",sum)
number = int(input("Enter number"))
count = 10
while count >=1
product = number*count
print( number , "X" , count ,"=", product)
count = count - 1
wow
thank you such a good tutorial!
thank you so much! i really needed some guidance for my class.
pls keep it free always because i will unable to pay and you explanation is best top superb ultimate awesome
Thank you! V. helpful!!
Very nice tutorial 👍
Very understandable better then the other ones i have watched
num = int(input("Enter the number :"))
count = 10
while count = 1 :
product = num * count
print(num, "x",count,"=",product)
count = count - 1
Nice work. There is a suggestion however. We do not need to check "count = 1".
Thanks For Code 🙏🏻😊
Thanks mate! I couldn't understand the idea of i+=1. Now I know the way you explained is we can write either count +=1 or count = count+1. Thank you.
##for that reverse table of 6 :
num=int(input("Enter your number:"))
count= 10
while count >= 0 :
product = number * count
print(num, "x" , count, "=" , product)
count = count - 1
I wrote this code and it worked! Thanks for the video!!!!!!!!!!!!! ^_^
damn thanks, in line - while count >= 0 , i just put count = 0 and it doesn't work :)
Thank you for the videos, your explanation is so much clear and simple, it makes me to understand logical behind
Veryy, Verryyy good explaination of the details of while-loops, he explains every line, and its effect. THANK YOU!!
👍👍👍 I need this content
reverse table
def adi ():
num= int(input("enter a number : "))
print ("multiplication table of " , num , "is :-" )
n = 10
while n >= 0:
pro= num * n
print(num , "x", n, "=", pro)
n-=1
>>> adi()
enter a number : 9
multiplication table of 9 is :-
9 x 10 = 90
9 x 9 = 81
9 x 8 = 72
9 x 7 = 63
9 x 6 = 54
9 x 5 = 45
9 x 4 = 36
9 x 3 = 27
9 x 2 = 18
9 x 1 = 9
9 x 0 = 0
Thank you! clean explanation so that I can complete a hw assignment! before I watch the next vid on "for loops" good rec on the app! love the option being able to continue learning :)
I managed to write this!
# Mutiplication table
num = int(input("Enter a number: "))
count = 1
while (count
you ppl are working hard! thankyou SOO much!
this is a very clear lecture, thanks!
Thank u soo much SIR ,totally helpful
I am a beginner in python!(aslo i have a doubt!)
How to add loop when an operation is executed,i mean if i executed a sum on calculator (made by me through python) then i made a statement which says that if the calculation is over then type "y" and if not (if they want to continue solving sums) then type "n" then,how can i loop that python code for calculator by to loop / for loop??? Please help me out!
thank you so much i really found this useful in my recent project
I can only ecoh what others have said already, thank you!
print("-----------------multiplication table-----------------")
number=int(input("which table do you want?"))
count = 10
while count >= 1:
product = number * count
print(number, "x", count, "=", product)
count = count - 1
This video is very helpful ❤
Thank you so much sir❤️
num=int(input("Enter the number:"))
count = 10
while count >=1:
Product =count*num
print(num,"x", count, "=", Product)
count=count - 1
Hi sir,Can you please provide more examples on while and for loop?
number=int(raw_input("enter the table:"))
count=10
while count=1:
product=number*count
print(number, "x",count,"=", product)
count = count - 1
If you have written loads of lines of code already, how would you get that code into a while loop so the program can repeat itself?
It is very helpful
u r amazing. thanks
Very Good Video I've been looking for a specific solution to this type of problem but your video has really help me thanks one more time
Thank you so much
It helped me to solve me my queries 😌
bro, u are u doing great work.
# Reverse multiplication table:
number=int(input("Enter a number: "))
count = 10
while count >= 1:
product=number * count
print(number , "*" , count , "=" ,product)
count=count-1
Excelente! Thanks!
a=int(input('enter the number:'))
count=10
while count0:
product=a*count
print(a,'*',count,'=',product)
count=count-1
answer for the practice question :
number = int(input("enter the number: "))
count = 10
while count>0:
product = number*count
print(number, "*", count, "=", product)
count = count - 1
is endif and endwhile used in python or is that in pseudocode?
Can I stop a loop from outside the loop! I want it very badly! I can't place the function inside the loop! So I have to get it from outside
There is no way to end a loop from outside.
Did you check the break statement? It can be used to end the loops abruptly without checking the test condition. Maybe it can fix your issue.
तपाईं नेपाली जस्तो लाग्यो, anyways u are doing great and we appreciate your time in helping us learn python.
amazing. thanks a lot
#reverse multipication table using while loop
number= int(input("Enter a number: "))
count= 10
while count>=1:
equals= number * count
print(number, "*", count,"=", equals)
count = count - 1
great explanation
how to repeat full program using an element input as an indicator by the user ?
I am actually building a calculator which can output a remainder or quotient of two numbers, i want to kmow how to repeat the full program so that the user might not need to run it again and he can rerun just by inputing an element.
Send the code
Im taking AP CSP and this video omfg clarified a while loop so much ty
number = int(input("enter anumber "))
count = 10
while count0:
product=number * count
print(number, "x", count, "=", product)
count = count - 1
Thank you
Omg thank you so much
number=int(input("Enter a number:"))
count=10
while count>0:
product=number*count
print('{} * {} = {}'.format(number,count,product))
count-=1
answer to the 8.13
number = int(input("enter a number: "))
count= 10
while count >0:
product = count * number
print(number, '*', count, "=" , product)
count = count -1
thanks man!
Programming Task
num=int(input("enter a number:"))
count =10
while(count>0):
product=count*num
print(num,"x",count,"=", product)
count=count-1
OUTPUT
enter a number:6
6 x 10 = 60
6 x 9 = 54
6 x 8 = 48
6 x 7 = 42
6 x 6 = 36
6 x 5 = 30
6 x 4 = 24
6 x 3 = 18
6 x 2 = 12
6 x 1 = 6
# program to tell table upto ten
count = int(input('which table do i tell you? '))
multiple = 1
while multiple
is it wrong if i used break?
I GOT THE CODE THAT WORKS!
number = int(input("Enter a Number 1 Through 12: "))
count = 12
while count >= 1:
product = number * count
print(number, "x", count, "=", product)
count = count - 1
#Multiplication Table
num = int(input("Enter num: "))
count = 10
while count >= 1:
product = num*count
print(num, "x", count, "=", product)
count = count - 1
#printing table in reverse order
num=int(input("Enter a number"))
count=10
while count>=1:
product=count*num
print(num,'x',count,'=',product)
count=count-1
anyone have any help for making a machine that repeats "hello" every 2 minutes????
import time
while True:
print("hello")
time.sleep(2*60)
how can stop while loop with a button but don't use thread?
sir, can you help me to find maximum and minimum number from the numbers that are entered by user using while loop ?
good content! :)
number = int(input("Enter a number:"))
count = 10
while count>=1:
product = number*count
print(number, "x", count, "=", product)
count = count - 1 test done sir
hey i got my answer but it wont stop looping. What am i missing
number = int(input('Enter number:'))
count = 10
while count