Community
Articles Topics Q&A
Learn
Course Programming Dictionary
Tools Library
Development tools Website Source Code PHP Libraries JS special effects Website Materials Extension plug-ins
AI Tools
Leisure
Game Download Game Tutorials
search
English
简体中文 English 繁体中文 日本語 한국어 Melayu Français Deutsch
Login
singup

  • Popular searches:
  • PHP
  • MySQL
  • jquery
  • HTML
  • CSS
  • Whole station
  • Course
  • Article
  • Q&A
  • Download
Found a total of 1452 related content
Python 3 Tutorial

Course Elementary  87141

Course Introduction:"Python 3 Tutorial" The 3.0 version of Python is often called Python 3000, or Py3k for short. This is a major upgrade compared to earlier versions of Python. In order not to bring too much burden, Python 3.0 was not designed with backward compatibility in mind. Python language is very simple and easy to use for beginners and to complete common tasks.

Python learning manual

Course Elementary  50730

Course Introduction:Python is purely free software. The source code and interpreter CPython follow the GPL (GNU General Public License) agreement. The syntax is concise and clear, and one of its features is the forced use of white space as statement indentation. Has a rich and powerful library. It is often nicknamed the glue language, which can easily connect various modules made in other languages ​​​​(especially C/C++) together.

Python advanced video tutorial

Course Intermediate  24426

Course Introduction:"Python Advanced Video Tutorial" This course was recorded by Geek Academy. Python is a completely object-oriented language. Functions, modules, numbers, and strings are all objects. And it fully supports inheritance, overloading, derivation, and multiple inheritance, which is beneficial to enhance the reusability of source code. Python supports overloaded operators and dynamic typing. Compared with Lisp, a traditional functional programming language, Python only provides limited support for functional design. There are two standard libraries (functools, itertools) that provide proven functional programming tools in Haskell and Standard ML.

Python basic introductory tutorial

Course Elementary  128644

Course Introduction:Python is an interpreted, object-oriented, dynamic data type high-level programming language. Python was invented by Guido van Rossum at the end of 1989, and the first public release was released in 1991. "Python Basics Tutorial" is suitable for developers who want to learn the Python programming language from scratch.

Python concurrent programming practice

Course Elementary  2281

Course Introduction:Concurrent programming is a technology used to improve the running speed of programs, including multi-threading, multi-process, asynchronous IO and other means; this course challenges the concurrent programming technology of Python; transforming web crawlers to crawl concurrently, and transforming web services to run business logic concurrently.

More courses
  • What does range(1,1) return in Python?

    {Code...} L = [1]+[L[x-1]+L[x] for x in range(1,len(L))]+[1]#If it is range(1,1 ), aren't there values ​​that cannot be obtained from the previous L[0] and L[1]?

    2017-06-22 11:52:08 0  3  3615

  • How to enable nginx to support http range download function

    How to enable nginx to support http range download function

    2017-05-16 17:16:23 0  1  789

  • python - Garbled code problem using gbk18030 encoding

    When the characters are garbled, the garbled characters usually exist as double-byte dots "." For example, on Python: there are dots in a large range. Is there any limit to this range?

    2017-05-18 10:52:22 0  1  799

  • js regular expression {} range - Stack Overflow

    Regular matching: starts with a lowercase letter, ends with a lowercase letter, and can have a dash (-) in the middle. The length is less than 32 characters {code...} The returned result is true and normally it should return false. Among them, {1,31} means that the range before matching is between 1 and 31. Why is the matching incorrect?

    2017-06-12 09:32:53 0  2  1014

  • I want to exclude records that do not fall within the value range specified in case when statement - SQL/MySQL

    I'm trying to set a seasonal range for specific dates from the DTBL_SCHOOL_DATES table. Below is my logic that sets the seasons within a given range based on the year and its region. CASEWHENRTRIM(dtbl_school_dates.local_school_year)='2021-2022'THENCASEWHENRTRIM(dtbl_schools_ext.region)='BayArea'ANDCAST(dtbl_school

    2023-09-11 23:15:24 0  2  657

MoreQ&A
What's the Difference Between Python 2.x's `range()` and `xrange()`?

Course Introduction:Understanding the Differences Between range() and xrange() Functions in Python 2.XIn Python 2.X, the range() and xrange() functions provide two...

2024-12-06 comment 0  867

What's the Difference Between Python 2.x's `range` and `xrange` Functions?

Course Introduction:The Difference Between 'range' and 'xrange' Functions in Python 2.XIn Python 2.X, the 'range' and 'xrange' functions appear quite similar, both...

2024-12-03 comment 0  969

How Does Python 3's `range()` Object Achieve Fast Containment Checks?

Course Introduction:Fast Containment Checks in Python 3 range() ObjectThe range() function in Python 3 may seem computationally intensive, as it appears to check for...

2024-12-10 comment 0  279

Why Does Python\'s `range()` Function Exclude the End Value?

Course Introduction:Understanding Python's Range Behavior: Excluding the EndThe Python range() function, when called with start and end parameters, generates a...

2024-11-29 comment 0  457

Range vs. xrange in Python 2.X: What's the Difference?

Course Introduction:Understanding the Differences Between range and xrange Functions in Python 2.XPython 2.X provides two functions, range and xrange, for generating...

2024-12-05 comment 0  742

MoreTechnical Articles

Public welfare online PHP training,Help PHP learners grow quickly!

About us Disclaimer Sitemap

© php.cn All rights reserved