user_name = " flas " passwd = 1234567 if user_name == " flash ": print("wellcome flash") elif user_name != " flash ": print(" your name is wrond") if passwd == 1234567: print("yor ar log in ") elif passwd != 1234567: print(" your passwd is wrond") # komada ayye ayyagen igana gena man poddak wenas karala haduwa 🙂 digatama python video set eka danna ayye 🙏
@nipundimantha4919 Жыл бұрын
thank you
@thilanperera8862 Жыл бұрын
Maru ❤️❤️
@rtubechannel4190 Жыл бұрын
hodatema teruna sir. The program takes as input an integer X, and computes the following formula. Y = 4 * X + 14 If the value of Y is greater than 50, the program should do the following: Z = Y + 4 If the value of Y is less than or equal to 50, the program should do the following: Z = Y * 2 Finally, the value of Z should be printed with print() command. x=int(input(" ') y=x*4+14 if y>50: z=y+4 elif y50: z=y+4 elif y50: z=y+40 else if
@_brian.fr0 Жыл бұрын
x = int(input("Enter Value : ")) y = 4*x+14 if y > 50: z = y+4 elif y