O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
message=input("Enter Message to encode : ") print("ASCII code for message : ") for ch in message: print(ord(ch),end=" ") # ord function return the ascii value of char
▶ Run Code
🖥 Output: