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

preview_player
Показать описание


Best Hindi Videos For Learning Programming:

Follow Me On Social Media
Рекомендации по теме
Комментарии
Автор

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

codepy
Автор

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

👍

helloitshecker
Автор

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

diwakarsingh
Автор

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

alokbhowmik
Автор

#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 :)

shashankverma
Автор

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

sarthakkale
Автор

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

ayushgupta
Автор

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!!!

codifyit
Автор

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

agreatvoid
Автор

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

sarthakkhare
Автор

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

md.moinulhaquegeorge
Автор

Hello Harry Bhai thank you for sharing the tutorial. I am the beginner of the Python and i am really enjoying the learning. I am looking for a tutorial where i can learn pyspark. If you have any material or videos please do comment.

Ajayiit
Автор

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

Vineeth_Kumar.
Автор

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

ankitjain
Автор

Sir, is is possible to make a distribution package so that we can install in the another computer (where python is not installed) and appear in "Control Panel\Programs\Programs and Features" (not just as an exe file)

Blr
Автор

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

shehab
Автор

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

mukeshnarayan
Автор

when I created JARVIS(assistant program) into exe. file....it cannot work.

JayShettyy
Автор

h1 = int(input("Enter a Number for user choice"))

for i in range(1, h1+1):
print(i)

EasyLearning
Автор

Great Sir. My problem is solved. Thank you.

sanjitpaul
join shbcf.ru