If you share this odd but fun habit, you’re in for a treat! Today, we’re going to build a random name generator in Python.
uppercaseLetter1=chr(random.randint(65,90)) #Generate a random Uppercase letter (based on ASCII code) uppercaseLetter2=chr(random.randint(65,90)) #Generate a random Uppercase letter (based on ASCII ...