# Define the variable crypto
crypto = True # Change this to False to test the else condition
# Check if crypto is True
if crypto:
print("bitcoin")
else:
print("not bitcoin")
# Define the variable crypto
crypto = True # Change this to False to test the else condition
# Check if crypto is True
if crypto:
print("bitcoin")
else:
print("not bitcoin")
No replies yet.