this is the best method and very simple method it really make a program very short. 😇😇😇😇😇😇
@Codeyug2 жыл бұрын
Follow python playlists on this channel. From 26 jan, you will get oop series...
@hyd_explorer_3602 жыл бұрын
superb bro
@Codeyug2 жыл бұрын
Yes...please keep watching videos on my channel..you will learn a lot
@kodarajesh352 жыл бұрын
Plz do video on inverted w hollow pattern
@Codeyug2 жыл бұрын
You will get videos on pattern in October definitely... currently i am working on other things...
@Codeyug2 ай бұрын
Master in Python :- kzbin.info/aero/PLI4OVrCFuY543naNBsCaRLrLSxI7MUOzZ
@dark_legions22272 жыл бұрын
👍👍👍👍
@razimd38492 жыл бұрын
what is the output for range 1 to 3
@avisaranand41412 жыл бұрын
Output - 1 2
@gollamamatha77952 жыл бұрын
how to this output in one line sir
@Codeyug2 жыл бұрын
By using end argument in print.. Put it's value blank... Or search "print function codeyug"
@gollamamatha77952 жыл бұрын
@@Codeyug tq sir😊
@sakalagamingyt35632 жыл бұрын
''' Armstrong Number Checking Algorithm by Bishal jaiswal Copyright (c) 2022 ''' # 53 ---> sum of nth power of the digits ( [ 5^2+3^2 = 25+9 ] = 34 not armstrong number ) def checkArmstrong(n:int) ->bool: if n>=0: myString = str(n) power = len(myString) nList = [] ArmstrongNumber = 0 for ch in myString: integer = int(ch)**power nList.append(integer) for i in range(len(nList)): ArmstrongNumber += int(nList[i]) if ArmstrongNumber == n: return True else: return False else: return None print(checkArmstrong(-1))