


Examples introduce the use of python random numbers, derivation and strings, double color balls
The following editor will bring you an article on how to use python random numbers, derivation, and examples of string and double-color ball applet. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look.
is as follows:
#随机数的使用 import random #导入random random.randint(0,9)#制定随机数0到9 i=random.sample(range(1,34),6)#输出6个随机数,范围是1到34 i.sort()#排序方法,排序时更改原数组,无返回值 sorted(i)#排序函数,排序时不影响原数组,产生新的排序后数据 print('----------------用上述的随机数做一个双色球---------------------') sj=random.sample(range(1,34),6) print(sj,random.randint(1,17)) #if多值判断 n=4 if n in (4,5,6,8): print('元组里面有',n,'这个值') else: print('元组里面不存在',n,'这个值') #利用while循环输出1dao100的和 i=0 he=0 while i<100 : he=he+i i+=1 print(he) #list集合使用冒泡排序从大道小排序 li=[9,5,1,8,7,3] for i in range(0,len(li)): for j in range(0,len(li)-i-1): if li[j]<li[j+1]: li[j],li[j+1]=li[j+1],li[j] print(li) #字符串的使用(方法,与参数) zf=('我的家乡在河南!') print(zf[4])#跟据下标输出,带第4个 print(zf[4:])#下标后面的字符 print(zf[2:5])#两下标之间的字符 print(zf[1:2]*2)#输出的字符串*2倍 print(zf.index('南'))#输出指定自负串的下标 print(zf.replace('的','得',1))#替换字符串,只替换一个 print(zf.endswith('南'),5,6)#最后的是否存在 print('家' in zf)#字符是否存在其中 #列表 print('---------------列表------------------') lb=['abc','123'] print(lb.append('456'))#添加单个 lb+=['a','b']#添加多个 lb.remove('a')#删去一个 o=lb.pop(0)#指定下标输出 lb.insert(2,'125')#指定下标修改 lb.clear()#删除所有 print(lb) print('--------推导--------') td=['Hi','Hello','word','python','Height','wall','Hight'] print([s for s in td if s.startswith('H')])
The above is the detailed content of Examples introduce the use of python random numbers, derivation and strings, double color balls. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

To run Python code in Sublime Text, you need to install the Python plug-in first, then create a .py file and write the code, and finally press Ctrl B to run the code, and the output will be displayed in the console.

VS Code can run on Windows 8, but the experience may not be great. First make sure the system has been updated to the latest patch, then download the VS Code installation package that matches the system architecture and install it as prompted. After installation, be aware that some extensions may be incompatible with Windows 8 and need to look for alternative extensions or use newer Windows systems in a virtual machine. Install the necessary extensions to check whether they work properly. Although VS Code is feasible on Windows 8, it is recommended to upgrade to a newer Windows system for a better development experience and security.

Writing code in Visual Studio Code (VSCode) is simple and easy to use. Just install VSCode, create a project, select a language, create a file, write code, save and run it. The advantages of VSCode include cross-platform, free and open source, powerful features, rich extensions, and lightweight and fast.

VS Code can be used to write Python and provides many features that make it an ideal tool for developing Python applications. It allows users to: install Python extensions to get functions such as code completion, syntax highlighting, and debugging. Use the debugger to track code step by step, find and fix errors. Integrate Git for version control. Use code formatting tools to maintain code consistency. Use the Linting tool to spot potential problems ahead of time.
