Python3 method of generating random cipher _python

Source: Internet
Author: User
Tags in python

This paper illustrates the method of generating random cipher by Python3, which has a wide range of practical value in Python programming. The specific methods are as follows:

This article mainly realizes the creation of 8-bit random password (uppercase and lowercase + digits), and uses Python3 to generate the random password of the primary algorithm.

The main functional code is as follows:

__author__ = ' Goopand '

import string
import random

def genpassword (length=8,chars=string.digits+ String.ascii_letters): Return to
  '. Join (Random.sample (chars*10,8))

if __name__== "__main__": for
  I in Range:
    Print (Genpassword (8))

I hope the examples described in this article will help you with Python programming.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.