#24 Program to print 1 to 100 without using Numbers in Python | Hindi

preview_player
Показать описание
In this video,
We have discussed a question that is, print 1 to 100 but without using any number.
====================================================================
====================================================================
====================================================================
OR
====================================================================
Books Recommended:
Class -- 11
------------------------

Class -- 12
-------------------------
====================================================================
Let's connect with me on:
====================================================================

====================================================================
👉 Chapter 7 Stacks & Queue = -----------------------------COMING SOON----------------------------
===================================================================

====================================================================

👀 🔥 Subscribe for more class 11 and Class 12 python videos and notes and board papers.
Do share it with your friends. 🔥🔥🔥
====================================================================
Tags:
#CodipyMohit #ComputerScience
Рекомендации по теме
Комментарии
Автор

*So, Basically I have repeated the "Basically" word* 17 times.... so basically sorry for that because I don't know why I used this word that much....😌
*But basically you should checkout this channel also* #DecodeWithMohit

codipymohit
Автор

I came up with this solution using while loop.
var = ord("A")
one = int(var/var)
onehundone = ord("e")
i = one
while i < onehundone:
print(i)
i += 1

dingdongman
Автор

This step is very easy to understand:
firstnum=(ord('B')-ord('A'))
lastnum=(ord('e'))
print(firstnum, lastnum)
for i in range(firstnum, lastnum):
print(i, end=" ")

ragul
welcome to shbcf.ru