Answers for "cool python projects"

6

what can you do with python

//  make a  friend using python 
//make sue  you have installed pyttsx3 module
// to install module open cmd and write pip install pyttsx3

import pyttsx3
engine = pyttsx3.init()
engine.say("")
engine.runAndWai
Posted by: Guest on November-04-2020
3

python projects with source code for beginners

#Password generator 

import random
import string

letters = string.ascii_letters
print('Your brand new password is:')
print (''.join(random.choice(letters) for i in range(12)))
Posted by: Guest on March-31-2021

Browse Popular Code Answers by Language