CBSE Class 11 Computer Science Question 163 of 173

Data Handling — Question 15

Back to all questions
15
Question

Question 15

Write a program to generate 6 digit random secure OTP between 100000 to 999999.

Solution
import random

otp = random.randint(100000, 999999);

print("OTP:", otp);
Output
OTP: 553072
Answer