convert string to boolean python
def str2bool(v):
return str(v).lower() in ("yes", "true", "t", "1")
convert string to boolean python
def str2bool(v):
return str(v).lower() in ("yes", "true", "t", "1")
boolean in python
#The Python Boolean type is one of Python's built-in data types. It's used to represent the truth value of an expression.
#in this code if you're age is under 13 than a massage will tell you that you are not able to sign up
Name = input("Povide your name : ")
Email = input("Provide your email : ")
age = input("Provide your age : ")
if age < "13":
print("you are not able to sign up")
else:
if age > "13":
print("you are able to sign up")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us