Converting .py to .exe | Python Tutorials For Absolute Beginners In Hindi #87

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ม.ค. 2025

ความคิดเห็น •

  • @rahulvatsa6160
    @rahulvatsa6160 5 ปีที่แล้ว +121

    Happy Teachers day. Harry Bhaiya. :)

  • @codepy3362
    @codepy3362 4 ปีที่แล้ว +32

    a=" "
    while a != 'quit':
    a = eval(input('enter your number') )
    for i in range(1 , a+1) :
    print(i, end=' ')

    • @mehakbrar3944
      @mehakbrar3944 3 ปีที่แล้ว

      What is this for

    • @sparkcodez
      @sparkcodez ปีที่แล้ว

      @@mehakbrar3944 to add numbers

  • @shashankverma4044
    @shashankverma4044 5 ปีที่แล้ว +18

    #ChallengeAccepted
    n=int(input("Enter a number"))
    for i in range(1,n+1):
    print(i,end=" ")
    Thank you so much Harry for such amazing videos :)

  • @helloitshecker
    @helloitshecker 3 ปีที่แล้ว +50

    you can add "exit = input(" ")" in the end to avoid the auto close problem
    👍

    • @anubhavjha7704
      @anubhavjha7704 2 ปีที่แล้ว +6

      Even
      input ()
      Alone will also work, no need for a variable exit.

    • @imamiastudycentre
      @imamiastudycentre 6 หลายเดือนก่อน +1

      @@anubhavjha7704 input() by default is taking string but in this program we are calculating so it is good practice to typecast our input

  • @diwakarsingh8455
    @diwakarsingh8455 3 ปีที่แล้ว +23

    You're the most underrated TH-camr of india man seriously, your content is pure gold . You really deserve so much recognition . Loved the content . Keep it up bro ❤️ and thanks 😊

  • @alokbhowmik3547
    @alokbhowmik3547 6 ปีที่แล้ว +50

    for i in range(int(input())):
    print(i,end=" ")

    • @53_sanidhyagupta55
      @53_sanidhyagupta55 3 ปีที่แล้ว

      meri folder me module install karne kai baad bhi file not found aaraha h any solution?

    • @cadarena2454
      @cadarena2454 3 ปีที่แล้ว +4

      @@53_sanidhyagupta55 i found the solution, jab aap main.txt file bana rahey hai usska format already txt mein hai, so it will be main.txt.txt.. just remove the txt from your file name, usskey baad yeh error throw nahin karega.. try it..

    • @53_sanidhyagupta55
      @53_sanidhyagupta55 3 ปีที่แล้ว +1

      @@cadarena2454 yeah ! Thanks for help

    • @Dontpushyour_luck
      @Dontpushyour_luck 3 ปีที่แล้ว +1

      @@cadarena2454 thanks for the help this small thing has been troubling me from last 15 minutes

    • @qpwoeiruty558
      @qpwoeiruty558 3 ปีที่แล้ว

      Alok how is this one line?

  • @ayushgupta7500
    @ayushgupta7500 6 ปีที่แล้ว +18

    a=int(input("enter no:"))
    for i in range(1,a+1):
    print(i,end=" ")

    • @RishabhGupta-su2un
      @RishabhGupta-su2un 3 ปีที่แล้ว

      Well its 0 he said from 0

    • @ayushranjan6644
      @ayushranjan6644 3 ปีที่แล้ว

      @@RishabhGupta-su2un no he said from 1 not 0 check at 9:39

  • @Alex-vl4gu
    @Alex-vl4gu 3 ปีที่แล้ว +6

    10:57
    print("🍩ye lo bhaiya mitai khalo")

  • @sarthakkale8498
    @sarthakkale8498 4 ปีที่แล้ว +11

    I accept the challenge.
    Solution:
    print([f"{i + 1} " for i in range(int(input("Enter a number: ")))])

  • @megaempireminecraft9379
    @megaempireminecraft9379 2 ปีที่แล้ว +1

    class Solve():
    def printn(self, n):
    for i in range(1, n+1):
    print(i, end=" ")
    s = Solve()
    s.printn(int(input("enter number: ")))

  • @akashdeysarkar619
    @akashdeysarkar619 3 ปีที่แล้ว +1

    a = int(input("Enter No."))
    i = 0
    while (i

  • @ahmarshayan9619
    @ahmarshayan9619 ปีที่แล้ว

    var= int(input("Enter a number of your choice "))
    i=0
    while(i

  • @dimpleverma1181
    @dimpleverma1181 2 ปีที่แล้ว +1

    Whenever I get any doubt like this I never Go to Google Rather I come to TH-cam and search the doubt on your channel sir. BECAUSE YOU ARE THE BIGGEST DOUBT SOLVER.

  • @sarthakkhare4600
    @sarthakkhare4600 4 ปีที่แล้ว +3

    From this i am very excited as the main project videos are coming....😎😎😎😎

  • @hardikspatel4090
    @hardikspatel4090 6 ปีที่แล้ว +4

    Sir aap ki hindi language me video bahut helpful he plz Aeysi hi video banate rhiye

  • @TheFahad318
    @TheFahad318 2 ปีที่แล้ว

    Nice revision :)
    print([i for i in range(1,int(input())+1)])

  • @shyampatel7038
    @shyampatel7038 4 ปีที่แล้ว +10

    [print(i,end=" ") for i in range(int(input("enter number=")))]

    • @sharadindupaul5933
      @sharadindupaul5933 3 ปีที่แล้ว +2

      [print(i, end=" ") for i in range(1, int(input("enter number=")))]

    • @tusharbatra8648
      @tusharbatra8648 3 ปีที่แล้ว

      lst=[i for i in range(int(input("enter number="))+1)]
      print(lst)

  • @7guitarlover
    @7guitarlover 3 ปีที่แล้ว +1

    @Harry bhai ! Thankyou sooooo much bhai ! 5 hours se solution dhund rha tha ! power shell made all the difference ! It told me that the image was inaccessible and font used was missing thankyou bhai ! thankyou a thousand times

  • @manthanrathod1046
    @manthanrathod1046 4 ปีที่แล้ว +31

    to avoid cmd closure, add an input() to the end of the file and it'll wait for you to press a key to close

  • @ishtiaqahmad4118
    @ishtiaqahmad4118 4 ปีที่แล้ว +9

    You have given a Great Idea. Thanks, a lot of thanks. Really you are sincere personality. Really a great gift for all persons, those are watching your videos.
    I.A.Siddiqui, Karachi-PAKISTAN

  • @ankitjain3930
    @ankitjain3930 5 ปีที่แล้ว +3

    single liner
    for i in range (1,int(input("Please select a number"))+1): print(i,'', end='')

  • @sangamchaurasiya9797
    @sangamchaurasiya9797 4 ปีที่แล้ว

    n = int(input('Enter the number : '))
    i = 1
    while(i

  • @dhruvingupta5648
    @dhruvingupta5648 2 ปีที่แล้ว +1

    i = 1
    a = int(input("number -- "))
    while i

  • @satyamtrivedi9771
    @satyamtrivedi9771 5 ปีที่แล้ว +10

    I accept the challenge
    Solution:
    n = int(input())
    for i in range(1,n+1):
    print(i,end=' ')

  • @mukeshnarayan9101
    @mukeshnarayan9101 4 ปีที่แล้ว +8

    #Made by Bhaskar Anand
    n=int(input(">"))
    for i in range(1,n+1):
    print(i,end=" ")

  • @intenseinfo5708
    @intenseinfo5708 2 ปีที่แล้ว +3

    01:33 😅 "kar bhi sakta hu kya pata" 😂Bhai, that's why I love how you teach! You're amazing Harry Bhai! Please keep it up! ❤️🙏

  • @jonyghosh7594
    @jonyghosh7594 3 ปีที่แล้ว

    print("Enter n :-")
    i = 1
    while i

  • @ayushranjan6644
    @ayushranjan6644 3 ปีที่แล้ว

    def printnumbers():
    i=1
    n=int(input("enter the desire number"))
    while(i

  • @divyarawatt
    @divyarawatt 2 ปีที่แล้ว

    n=int(input())
    i=1
    while(i

  • @EasyLearning7
    @EasyLearning7 5 ปีที่แล้ว +4

    h1 = int(input("Enter a Number for user choice"))
    for i in range(1, h1+1):
    print(i)

  • @SuperMohit009
    @SuperMohit009 4 ปีที่แล้ว

    i=1
    J=input ("Enter number : ")
    While i

  • @topeducationfree
    @topeducationfree 3 ปีที่แล้ว +1

    YOU ARE BEST TEACHER

  • @vishalwaghare1962
    @vishalwaghare1962 5 ปีที่แล้ว

    N=int(input("enter the n value"))
    i=0
    while(i

  • @ShivamPatel-tu9tp
    @ShivamPatel-tu9tp 3 ปีที่แล้ว +1

    for i in range(1,int(input("enter your number"))+1): print(i)

  • @udaysinghrana5725
    @udaysinghrana5725 4 ปีที่แล้ว

    def numbers(num):
    return list(range(1,num+1))
    if __name__ == '__main__':
    print(numbers(int(input())))

  • @kartikprajapati3592
    @kartikprajapati3592 2 ปีที่แล้ว

    #challenge accepted
    #thanks for videos i learn so much fr9m you
    n=int(input("enter how much number you wanna print:-
    "))
    for i in range(1,n+1):
    print(i,end=" ")

  • @akshitagg1
    @akshitagg1 3 ปีที่แล้ว

    9:53
    I accept the challenge
    for i in range(int(input("enter: "))):
    print(i+1,end=" ")

  • @siyamalav9702
    @siyamalav9702 4 ปีที่แล้ว +7

    Challenge Accepted :
    for x in range(int(input("Till which number do you want to print counting :
    "))+1):print(x,end=" ")

  • @Versebyasif
    @Versebyasif 4 ปีที่แล้ว +2

    Thank u bhai
    May god bless you and your knowledge....🙏🏼🙏🏼

  • @techzzoid
    @techzzoid 4 ปีที่แล้ว +1

    num=int(input("enter number"))
    res=[num+1 for num in range(num)]
    print(res)

  • @keshavmanuja1348
    @keshavmanuja1348 3 ปีที่แล้ว

    Accepted,
    print("Print the number you want")
    n=int(input())
    for i in range(1,n+1):
    print(i, end=" ")

  • @prayagsapar1969
    @prayagsapar1969 3 ปีที่แล้ว

    Challege by Harry Bhai...
    numbers=int(input("Number: "))
    for num in range(1,numbers+1):
    print(num,end=" ")

  • @adityapatil7909
    @adityapatil7909 2 ปีที่แล้ว

    I accept the challenge
    solution :-
    n = int(input("Enter the number till which you want to print the numbers : "))
    for a in range(1,n+1):
    print(a)

  • @codifyit5567
    @codifyit5567 4 ปีที่แล้ว +2

    Lovely Sir!!! I made a calculator and I wanted to convert it to .exe file!!! Your Video has helped me a lot.. Thank You So Much sir for such a lovely video!!!

  • @shankhagoswami785
    @shankhagoswami785 3 ปีที่แล้ว

    i am new to your channel and i accept the challenge
    i think this will be the answer:
    a=int(input("enter a number:"))
    for i in range(1,a+1):
    print(i)
    pls give me a heart if my answer is correct pls sir

  • @vivekvarshney3453
    @vivekvarshney3453 4 ปีที่แล้ว +9

    Sir please tell me that how to create 1 exe file of a python program which is stored in a folder along with supported images, wav files etc.
    Please make a video on it

  • @shivanshutyagi83
    @shivanshutyagi83 4 ปีที่แล้ว

    n=int(input("enter the range number"))
    i=1
    while i

  • @tanuwinnie3178
    @tanuwinnie3178 4 ปีที่แล้ว +1

    accept the challenge.
    n=int(input("Enter the last no. of term"))
    for i in range(1,n+1)
    print(i)

  • @pushpendradas184
    @pushpendradas184 3 ปีที่แล้ว +3

    print(*range(1,int(input())+1))
    Yes it does all your work in just one line try to use it on your code if you want to reduce lines of code
    @CodeWithHarry

  • @sackhhamjha2234
    @sackhhamjha2234 3 ปีที่แล้ว

    i accept the challenge till = int(input("enter the desired number"))
    till = int(input("enter the desired number: "))
    start = 0
    while start < till+1:
    print(start, end=" ")
    start += 1

  • @mensbay7
    @mensbay7 2 ปีที่แล้ว

    Kateiii zehar software bana diye bhai XD

  • @RajPatel-ip1ms
    @RajPatel-ip1ms 3 ปีที่แล้ว

    for i in range(int(input("ENTER THE NUMBER WHICH PRINTS TILL THE END OF THAT NUMBER
    "))):print(i+1)

  • @codingcenter2008
    @codingcenter2008 2 ปีที่แล้ว

    This helped me a lot, Thank You!!! Now I can show off 😅😅

  • @banshbahadurpatel4967
    @banshbahadurpatel4967 5 ปีที่แล้ว +4

    for x in range (1,int(input())+1): print(x,end=" ")

  • @eldersiblings808
    @eldersiblings808 4 ปีที่แล้ว +1

    this video was amazing....
    print("Thankyou bhiya"*3000)

  • @ShubhamGupta-qk9uq
    @ShubhamGupta-qk9uq 5 ปีที่แล้ว +3

    i = int(input("Enter a number :"))
    for t in range(i):
    print(t+1,end=',')

  • @RohanGohil-gr7wo
    @RohanGohil-gr7wo ปีที่แล้ว +1

    n=int(input("Enter a number"))
    for i in range(1,n+1):
    print(i,end=" ")
    aur apke liye gulab jamun
    🍩🍧🍨🍦🌹🫐

  • @pragyatejra6637
    @pragyatejra6637 4 ปีที่แล้ว +2

    X=int(input("enter no."))
    For i in range(1,x):
    print (i,end="")

    • @pragyatejra6637
      @pragyatejra6637 4 ปีที่แล้ว

      @Raghav TH-cam actually X and x is same correct it at one place .

  • @pushpendraverma1554
    @pushpendraverma1554 3 ปีที่แล้ว

    I accept the challenge
    print(list(value for value in range(1,int(input('enter the number'))+1)))

  • @satiregurujishorts
    @satiregurujishorts ปีที่แล้ว

    Print Numbers upto n in a single line---
    n = int(input("Enter number:"))
    for i in range(1,n+1):
    print(i, end=" ")
    #codewithharry

  • @Sazzadhossen-xw5fj
    @Sazzadhossen-xw5fj ปีที่แล้ว

    Thank you so much for this harry sir. love you❤❤❤❤❤

  • @sanjitpaul2953
    @sanjitpaul2953 4 ปีที่แล้ว

    Great Sir. My problem is solved. Thank you.

  • @RohanSharma-qr5fy
    @RohanSharma-qr5fy ปีที่แล้ว

    for i in range(1, int(input('Enter the number
    '))+1, 1): print(i,end=' ')
    The challenge in one line

  • @itsanishjain
    @itsanishjain 6 ปีที่แล้ว +26

    print([i for i in range(0,int(input('enter no:')))])

    • @SahilKumar-rz3th
      @SahilKumar-rz3th 4 ปีที่แล้ว

      @@minthunt7237 print([i for i in range(1, int(input())+1)])

    • @SahilKumar-rz3th
      @SahilKumar-rz3th 4 ปีที่แล้ว

      print([i for i in range(1, int(input())+1)])

    • @AdityaKumar-qn5xp
      @AdityaKumar-qn5xp 4 ปีที่แล้ว

      print([i for i in range(0 ,(int(input("till where you want to print"))+1))])

    • @TechnicalAnkesh
      @TechnicalAnkesh 4 ปีที่แล้ว +1

      wrong hai bhai
      print([i for i in range(1,int(input())+1)])

  • @shadow-wr6uw
    @shadow-wr6uw ปีที่แล้ว

    Accepted!!
    n=int(input("enter number:-"))
    for i in range(0,n+1):
    print(i,end=" ")

  • @adityagiri8069
    @adityagiri8069 3 ปีที่แล้ว

    Revision question's answer:
    input1 = int(input("Enter thine number:
    "))
    for i in range(1, input1+1):
    print(i, end=" ")

  • @sachinsinghal3104
    @sachinsinghal3104 3 ปีที่แล้ว

    I accept the challenge
    n = int(input())
    l = []
    for a in Range(0,n):
    l.append[a]
    print(l)

  • @DOWN3X_FF
    @DOWN3X_FF 11 หลายเดือนก่อน

    n = input()
    st =''
    i =0
    try:
    n = int(n)
    while(i

  • @DendrocnideMoroides
    @DendrocnideMoroides 2 ปีที่แล้ว

    I challenge the accept
    n = int(input("Enter a number: "))
    for i in range(1, n + 1):
    print(i, end=" ")

  • @Pawan.Kumar.2611
    @Pawan.Kumar.2611 2 ปีที่แล้ว

    for i in range(int(input("enter number till which you want to print:"))+1): print(i,end=" ")

  • @ahmedabdussalam728
    @ahmedabdussalam728 3 ปีที่แล้ว

    I accept the challenge
    Num = input("enter number")
    For i in range(num+1).reverse():
    Print(i)

  • @namanj16
    @namanj16 4 ปีที่แล้ว

    Great work Harry Bhai ..

  • @shehab976
    @shehab976 4 ปีที่แล้ว

    very good for simple solutions...where tough programing-guys were making it unnecessary complexy...carry on bro

  • @prthms_
    @prthms_ 4 ปีที่แล้ว +1

    Very use full video...

  • @namanagrawal4868
    @namanagrawal4868 4 ปีที่แล้ว +1

    [print(i+1,end=' ') for i in range(int(input('enter the number of numbers you want to print')))]

  • @sakalagamingyt3563
    @sakalagamingyt3563 2 ปีที่แล้ว +1

    Challange accepted ans the solution
    n = input("Enter a number
    > ")
    for i in range(1,int(n)+1):
    print(i,end=" ")

  • @tuahakhan6236
    @tuahakhan6236 4 ปีที่แล้ว

    def num_printer():
    user_input=int(input("Enter a number"))
    for m in range(user_input+1):
    print(m,end=' ')
    num_printer()

  • @ApkaBhaiTechnical
    @ApkaBhaiTechnical 2 ปีที่แล้ว

    # I accept the challenge
    n=int(input())
    for i in range(1,n+1):
    # n=n+1
    print(i,end=" ")

  • @khuzaimakashif203
    @khuzaimakashif203 3 ปีที่แล้ว

    i accept this challenge>>>>
    x = int(input("write a number"))
    for n in range(1,x+1):
    print(n)

  • @ashokkumarmaurya1192
    @ashokkumarmaurya1192 4 ปีที่แล้ว +1

    n=input(" enter the no.")
    for a in (1,n):
    print(a)
    print ("challenge accepted")

    • @jonnathangiant6582
      @jonnathangiant6582 4 ปีที่แล้ว

      Wrong
      a = int(input())
      for a in range (1,a+1):
      print(a , end= " ")
      This should have been the code

  • @crazy_movserclips2979
    @crazy_movserclips2979 3 ปีที่แล้ว +1

    i except this challenge.
    print("enter You want to print all n numbers up to n numbers like n numbers.")
    n_number=int(input())
    for num in range(1,n_number+1):
    print(num)

  • @DevPatel-hl1oq
    @DevPatel-hl1oq 3 ปีที่แล้ว

    I Accept Challenge
    n = int(input("Enter one number: "))
    for i in range(1 , n+1):
    print(i , end=" ")

  • @Jk-jw7jg
    @Jk-jw7jg 4 ปีที่แล้ว +1

    Sir, Aapke liye gulabjamun 😊😊

  • @mithileshverma3017
    @mithileshverma3017 3 ปีที่แล้ว

    Best explainer mr. Harry

  • @SachidanandKumar-mg9lo
    @SachidanandKumar-mg9lo ปีที่แล้ว

    I accept the challenge : for i in range(int(input("Enter till where you want the counting"))+1) : print (i,end='')

  • @mitrashishchowdhury6128
    @mitrashishchowdhury6128 4 ปีที่แล้ว

    I accept the challenge.
    n=int(input("Enter the last no. of term"))
    for i in range(1,n+1)
    print(i)

    • @jonnathangiant6582
      @jonnathangiant6582 4 ปีที่แล้ว

      No this is wrong
      n = int(input())
      for n in range (1,n+1):
      print(n , end= " ")
      This should have been the code

  • @ManishKumar-yf8jg
    @ManishKumar-yf8jg 4 ปีที่แล้ว

    a = int(input("Enter the number upto which you want to print number"))
    i = 1
    while a>=i:
    print(i,end = ',')
    i= i+1

  • @anhadsinghnarang1260
    @anhadsinghnarang1260 2 ปีที่แล้ว

    user_input=int(input("Till which number do you wish to print number?:"))
    i=0
    while i

  • @mr.techinfo5080
    @mr.techinfo5080 4 ปีที่แล้ว

    Harrybhai Thank You For Making This Series

  • @vimaljha2552
    @vimaljha2552 3 ปีที่แล้ว

    num = int(input("Enter a number :"))
    for i in range(num+1):
    print(i,end=' ')
    or
    num = int(input("Enter a number :"))
    l1 = [i for i in range(num+1)]
    print(l1)

  • @sandeepgiri715
    @sandeepgiri715 2 ปีที่แล้ว

    # Print number from 1 to n in one line One line
    for x in range(0, int(input("Enter the number till when you print the sequence"))): print(x+1)

  • @shiveshkushwaha204
    @shiveshkushwaha204 4 ปีที่แล้ว +2

    I accept the challenge
    Solution:-
    print([i for i in range(1, int(input('enter no:'))+1)])

  • @jaypanchal3875
    @jaypanchal3875 2 ปีที่แล้ว

    thank you harry bhai.............🍫🍫🍫

  • @kaushangsurya
    @kaushangsurya 3 ปีที่แล้ว

    it worked! it helped! thanks

  • @funwithfafzu6226
    @funwithfafzu6226 2 ปีที่แล้ว

    Challenge Accepted
    n = int(input("Enter the number
    "))
    for i in range(0,n+1):
    print(i,end=" ,")
    Thankss Harry sir

  • @stevendna8956
    @stevendna8956 3 ปีที่แล้ว

    create a folder as pyin and open powershell by shift right click there.
    # type pip install pyinstaller
    # create a notepad and write some code.
    # type python .\main.txt in command prompt
    # type 4 enter then 5 enter we should get 9
    #
    # then type pyinstaller main.txt
    # dist folder is formed inside which there will be a .exe file ready

  • @PiyushMedicalKnowledge
    @PiyushMedicalKnowledge 3 ปีที่แล้ว +2

    Make some real life GUI based PYTHON programs and then convert them to exe which runs without installing PYTHON and without opening powershell.
    Also convert that to apk file which runs on ANDROID phone.
    Remember must be
    GUI based.

    • @PiyushMedicalKnowledge
      @PiyushMedicalKnowledge 3 ปีที่แล้ว +1

      At least make GUI based calculator which I can make exe or apk and send them to my friends.

  • @vinodshet345
    @vinodshet345 3 ปีที่แล้ว +1

    I accept the challenge...! harry bhai....

  • @jayeshkaushik2975
    @jayeshkaushik2975 4 ปีที่แล้ว +1

    num = int(input("Enter the number:"))
    i = 1
    to_the = num + 1
    for i in range(i, to_the):
    print(i, end=" ")

  • @mohdasad4256
    @mohdasad4256 3 ปีที่แล้ว

    check it
    for i in range(int(input("Enter any number : "))):
    print(i,end=" , ")