Search found 5 matches

by satineeraj
Fri Nov 11, 2022 8:41 am
Forum: Programs, Libraries and Tools
Topic: Password Generator Using by Python Script
Replies: 4
Views: 26612

Re: Password Generator Using by Python Script

Hi, you can check this code: import random import pyperclip from tkinter import * from tkinter.ttk import * # Function for calculation of password def low(): entry.delete(0, END) # Get the length of password length = var1.get() lower = "abcdefghijklmnopqrstuvwxyz" upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ...
by satineeraj
Sun Jul 10, 2022 8:27 am
Forum: Programs, Libraries and Tools
Topic: Password Generator Using by Python Script
Replies: 4
Views: 26612

Re: Password Generator Using by Python Script

Hi, @ankitdixit you can check this: import string import random #all characters characters = string.ascii_letters + string.digits + string.punctuation #size of the password size = 10 #generate a random password using Python random_password = "" for i in range(size): #pick a random character from cha...
by satineeraj
Fri Oct 22, 2021 6:01 pm
Forum: General Discussion and Questions
Topic: suggest best resources to learn python
Replies: 9
Views: 5556

Re: suggest best resources to learn python

hey @kiash yes head first python is one of the best books to learn, and my favorite as well, some days back I search some topic of python on the Internet and found this post , is post is about the python cheat sheet, is post is really very amazing and very informative as well. I liked this one. Thanks
by satineeraj
Wed Apr 07, 2021 5:53 pm
Forum: General Discussion and Questions
Topic: suggest best resources to learn python
Replies: 9
Views: 5556

Re: suggest best resources to learn python

Thanks for the reply i also searched this on the internet and found this post, please help is this good to learn python, i found many of the python tutorials here. and also found this Post, here i find all the Important Python Books, please help
by satineeraj
Tue Apr 06, 2021 3:05 pm
Forum: General Discussion and Questions
Topic: suggest best resources to learn python
Replies: 9
Views: 5556

suggest best resources to learn python

Hello Everyone, I am in the second year of my engineering, and want to learn python from the scratch. Please suggest to me the best books and best online resources that will help me to learn the python language.