Python Range Function (Generate Numbers from 1 to 1,000,000,000 Easily) #19

  Рет қаралды 50,843

Programiz

Programiz

Күн бұрын

Пікірлер: 68
@programizstudios
@programizstudios 2 жыл бұрын
🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges. Try Programiz PRO: bit.ly/right-python
@gleide-coelho
@gleide-coelho 4 жыл бұрын
I´m really pleased with Punit, I think he´s a great teacher!!!
@geek654
@geek654 2 жыл бұрын
agreed
@abhinavdwivedi2975
@abhinavdwivedi2975 3 ай бұрын
Can someone tell me how to add specific string between any number in range😢 please
@imran_7862
@imran_7862 3 жыл бұрын
i = range(3,31,3) print(list(i)) [3, 6, 9,12, 15, 18, 21, 24, 27, 30]
@JoRoCaRa
@JoRoCaRa 3 жыл бұрын
learned so MUCH!!!!! second semester in a data analytics masters! this is so much help!!! breaks it down so its easily learned. Im not just copying code, Im UNDERSTANDING IT!!!
@axxiar
@axxiar 3 жыл бұрын
So much underrated series to begin python
@ajaymorampudii9990
@ajaymorampudii9990 4 жыл бұрын
thank you programiz ,thus is an wonderfull session i really enjoyed the course and i suggested it to my friends as well .waiting for other programming languages
@ruchirapande1548
@ruchirapande1548 2 жыл бұрын
thankyou very much sir, my child is 9 and is learning coding by watching your videos
@ankurchauhan9823
@ankurchauhan9823 3 жыл бұрын
Thanku sooo muchhh sirrrr❤❤❤❤❤❤ this is very helpful for us 💯💯💯💯💯💯
@devidevatha
@devidevatha Жыл бұрын
so useful, so easy to learn. I like this approach!
@saifurrehman6756
@saifurrehman6756 4 жыл бұрын
I love all the videos and enjoy learning. Thanks a million, Punit and team Programiz. So, when the new videos are coming? And, will you go to the advanced level, and what's about machine learning? In the last, any practice material for me during this gap?
@Mish-333
@Mish-333 2 жыл бұрын
Such a great channel! Simply great teaching techniques used!!🙌✨
@rushi1750
@rushi1750 2 жыл бұрын
6:16 result = range(3,31, 3) print(list(result)) done captain
@amanranjan217
@amanranjan217 4 жыл бұрын
Thank You Very Much Sir....!!! Due to Programizzz I'm now able to write small programmes. I am a 12th class student and I had not learned a line about python in 11th. I was very worried how I'll cover the basics and everything of 11th and then I found Programizz...You all Guyzzz are awesome...Thank You Very Much From my Bottom of heart . Hope You will always make us learn more about python....and other programing languages also...Waiting for the next....Do You Konw I Covered all of your videos in just a week......Thank U Team Programizzz
@ichoosemeimsorry
@ichoosemeimsorry 2 жыл бұрын
thank youuu you're a life saver
@JohnDonau
@JohnDonau 2 ай бұрын
Great tut!
@mintoohigh9679
@mintoohigh9679 3 жыл бұрын
Awosme video, now i know where to come in case i need help !
@vikhyatrao4472
@vikhyatrao4472 3 жыл бұрын
thank you very much sir there great video.
@minad4925
@minad4925 3 жыл бұрын
Thanks Puneet!
@harshsingh3443
@harshsingh3443 3 жыл бұрын
This really helps me
@anjanasolanki2977
@anjanasolanki2977 3 жыл бұрын
input = list(range(3,31,3)) for result in input: print(result) Sir it's like or it can also be done in other ways.😇
@harish0000
@harish0000 4 жыл бұрын
Nice video Keep it up 😀
@Pirate_157
@Pirate_157 2 жыл бұрын
6:25 x = list(range(0,31,3)) print(x)
@desidev69
@desidev69 3 жыл бұрын
result=range(3,31,3) Print(list(result))
@majidalich2947
@majidalich2947 2 жыл бұрын
a = list(range(3,31,3)) print(a)
@KrishnaGupta-gs4hk
@KrishnaGupta-gs4hk 4 жыл бұрын
new to this channel can you make tutorials for java script
@Akinitas
@Akinitas 3 жыл бұрын
This is very informative. But do you know how one would take two inputs and use them as a range?
@memespotato
@memespotato 3 жыл бұрын
input1= int(input("Enter a number: ") input2= int(input("Enter second number: ") range1= list(range(input1, input2)) hope this helped :)
@beerusreal6
@beerusreal6 4 жыл бұрын
Please create a tutorial video on Data Science and Machine Learning. Please.
@gotetilakshman6770
@gotetilakshman6770 3 жыл бұрын
For value in range(0,31,3): print(value)
@sukhdevarora2185
@sukhdevarora2185 3 жыл бұрын
bhai dhyan se padh vo 3 se start hai
@sandipansarkar9211
@sandipansarkar9211 3 жыл бұрын
great video
@kkgill1806
@kkgill1806 2 жыл бұрын
What will be input coding of this output. Output :- sum_range(0,5) 10 sum_evens(0,5) 6
@renuayyappan
@renuayyappan 3 жыл бұрын
Hi Punit, how can i display combined list (3 List) for the multiples of 4,5 and 6 between 20 and 40. Giving only one input
@kawaiikina3618
@kawaiikina3618 2 жыл бұрын
It may be easier to use set since when you join 3 multiples set, it will remove duplicates
@kawaiikina3618
@kawaiikina3618 2 жыл бұрын
multiples_of_4 = set(range(20,41,4)) multiples_of_5 = set(range(20,41,5)) multiples_of_6 = set(range(24,41,6)) print(multiples_of_4) print(multiples_of_5) print(multiples_of_6) combined = multiples_of_4.union(multiples_of_5, multiples_of_6) print(combined)
@AsrorkhanProgrammer
@AsrorkhanProgrammer 2 жыл бұрын
Its great
@yuvsehgal6418
@yuvsehgal6418 2 жыл бұрын
print(list(range(3,31,3))) this will give the desired output
@dipankarray8662
@dipankarray8662 3 жыл бұрын
Can you please make videos on numpy, matplotlib, scipy etc?? please
@raghavchandrasekar468
@raghavchandrasekar468 Жыл бұрын
rang_e=range(3,31,3) print(list(rang_e))
@ThePraveenbabu
@ThePraveenbabu 2 жыл бұрын
i= list(range(3,31,3)) print(i)
@harish0000
@harish0000 4 жыл бұрын
Please also alow us to save our code in python compiler which is on your site
@mohameddalkha2436
@mohameddalkha2436 Жыл бұрын
solution: for i in range (3,31,3): print(i)
@clownshereandthere
@clownshereandthere 11 ай бұрын
x = range(3, 31, 3) print(list(x))
@harrymithun10
@harrymithun10 4 жыл бұрын
what can we do to include the 'end value' (ie last number) of the range to satisfy our if conditions? If someone know the answer please let me know. Much appreciated
@programizstudios
@programizstudios 4 жыл бұрын
Suppose you need to include numbers from 1 to 10, then you can use: result = range(1, 11) Similarly, if you want to include numbers from 1 to n, you can use: n = 10 result = range(1, n + 1)
@harrymithun10
@harrymithun10 4 жыл бұрын
@@programizstudios Thank you guys. The second explanation is what i was exactly looking for. BTW keep doing the great work you are doing. It is really being useful to many people.
@Poly-A-
@Poly-A- 3 жыл бұрын
How do we get the entire value like N= 3 For n in range(1,n) Result is 1,2 How do we get the 3 ?
@otatop7359
@otatop7359 4 жыл бұрын
#task num = list(range(3, 31, 3)) print(num)
@RATANAGARWALITINFORMER
@RATANAGARWALITINFORMER 3 жыл бұрын
good
@jahnaviscraftworld
@jahnaviscraftworld 3 жыл бұрын
result = list(range(3, 31, 3)) print(result)
@kartikeshwarhingole6007
@kartikeshwarhingole6007 4 жыл бұрын
sir when you will release your new video
@programizstudios
@programizstudios 4 жыл бұрын
New videos will come out soon! Stay tuned 👍
@girishgh9793
@girishgh9793 Жыл бұрын
result=list(range(3,31,3)) print(result
@kal_4life
@kal_4life 4 жыл бұрын
is this the last video of the series?
@programizstudios
@programizstudios 4 жыл бұрын
No, it's not. We will upload the new videos soon.
@ritaviksakpal
@ritaviksakpal 4 жыл бұрын
print(list(range(3, 31, 3)))
@ritaviksakpal
@ritaviksakpal 4 жыл бұрын
thanks for the video
@yeedaramahigayathri493
@yeedaramahigayathri493 3 жыл бұрын
For num in range (1,10): Print() it should print the values 11 14 19 26 35 46 59 74 91
@vigneshreddychejarla6072
@vigneshreddychejarla6072 2 жыл бұрын
Result=list(range(3,31,3)) Print(result)
@wasiffaisal2002
@wasiffaisal2002 2 жыл бұрын
print(list(range(3,30,3)))
@rammahh8186
@rammahh8186 2 жыл бұрын
lst1 = list(range(3, 31, 3)) print(lst1)
@AsrorkhanProgrammer
@AsrorkhanProgrammer 2 жыл бұрын
Good
@mdiftekhar6876
@mdiftekhar6876 3 жыл бұрын
result = list(range(3,31,3)) print(result)
@ankushsultane
@ankushsultane 2 жыл бұрын
a=list(range(3,31,3)) print(a)
@mr.k8660
@mr.k8660 2 жыл бұрын
result =list(range(3,31,3)) print(result)
@joyceadhiambo9977
@joyceadhiambo9977 2 жыл бұрын
result= list(range(3,33,3)) print(result)
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 336 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
Сестра обхитрила!
00:17
Victoria Portfolio
Рет қаралды 906 М.
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
10 Python Comprehensions You SHOULD Be Using
21:35
Tech With Tim
Рет қаралды 161 М.
6 Tips to write BETTER For Loops in Python
9:19
Patrick Loeber
Рет қаралды 250 М.
10 Important Python Concepts In 20 Minutes
18:49
Indently
Рет қаралды 371 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
Lists & Tuples in Python (How to Use Them Effectively?) #15
19:29
25 nooby Python habits you need to ditch
9:12
mCoding
Рет қаралды 1,8 МЛН
While Loop in Python (Perform a Task 1000000 times With Ease) #8
10:12
Python Inheritance (Make Your Code Modular!) #22
14:52
Programiz
Рет қаралды 58 М.
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН