Main Key Points input() // for get userinput value int() // eval() // float() // x =input("Enter Your age-") // 23 print(x) output 23 int() Type cast x = int(input("Enter Your age-")) // only enter integer value print(x) output 23 float() type cast x = float(input("Enter Your age-")) // 44 print(x) output 44.0 eval() type casting - any types of value converts x = eval(input("Enter Your age-")) // enter- 0b1111( 15 binary number) print(x) output 15
Simple If Statement x = 23 if x > 0: print("x is positive value") print("this is always printed") x = -1 if x > 0: print(x, "is positive number") print("this is also always printed") Output If...Else statement a = -7 if a > 0: print(a, " is positive") else: print(a," is Negative") output
Comments
Post a Comment