Skip to content

Instantly share code, notes, and snippets.

name = "Kenechukwu"
height_m = 3
weight_kg = 20
bmi = weight_kg / (height_m ** 2)
print("bmi: ")
print(bmi)
"""if ord('a') == 97:
print ("true")
else:
print("not true")"""
encrypted = []
sentence = input("Enter characters to encrypt or decrypt")
for p in sentence:
if ord(p) == 51:
p = ord(p) + 15