久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python常见问题(2):编程问题 Programming FAQ

發布時間:2025/3/21 python 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python常见问题(2):编程问题 Programming FAQ 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Contents

  • Programming FAQ
    • General Questions
      • Is there a source code level debugger with breakpoints, single-stepping, etc.?
      • Is there a tool to help find bugs or perform static analysis?
      • How can I create a stand-alone binary from a Python script?
      • Are there coding standards or a style guide for Python programs?
      • My program is too slow. How do I speed it up?
    • Core Language
      • Why am I getting an UnboundLocalError when the variable has a value?
      • What are the rules for local and global variables in Python?
      • Why do lambdas defined in a loop with different values all return the same result?
      • How do I share global variables across modules?
      • What are the “best practices” for using import in a module?
      • Why are default values shared between objects?
      • How can I pass optional or keyword parameters from one function to another?
      • What is the difference between arguments and parameters?
      • Why did changing list ‘y’ also change list ‘x’?
      • How do I write a function with output parameters (call by reference)?
      • How do you make a higher order function in Python?
      • How do I copy an object in Python?
      • How can I find the methods or attributes of an object?
      • How can my code discover the name of an object?
      • What’s up with the comma operator’s precedence?
      • Is there an equivalent of C’s ”?:” ternary operator?
      • Is it possible to write obfuscated one-liners in Python?
    • Numbers and strings
      • How do I specify hexadecimal and octal integers?
      • Why does -22 // 10 return -3?
      • How do I convert a string to a number?
      • How do I convert a number to a string?
      • How do I modify a string in place?
      • How do I use strings to call functions/methods?
      • Is there an equivalent to Perl’s chomp() for removing trailing newlines from strings?
      • Is there a scanf() or sscanf() equivalent?
      • What does ‘UnicodeError: ASCII [decoding,encoding] error: ordinal not in range(128)’ mean?
    • Sequences (Tuples/Lists)
      • How do I convert between tuples and lists?
      • What’s a negative index?
      • How do I iterate over a sequence in reverse order?
      • How do you remove duplicates from a list?
      • How do you make an array in Python?
      • How do I create a multidimensional list?
      • How do I apply a method to a sequence of objects?
      • Why does a_tuple[i] += [‘item’] raise an exception when the addition works?
    • Dictionaries
      • How can I get a dictionary to display its keys in a consistent order?
      • I want to do a complicated sort: can you do a Schwartzian Transform in Python?
      • How can I sort one list by values from another list?
    • Objects
      • What is a class?
      • What is a method?
      • What is self?
      • How do I check if an object is an instance of a given class or of a subclass of it?
      • What is delegation?
      • How do I call a method defined in a base class from a derived class that overrides it?
      • How can I organize my code to make it easier to change the base class?
      • How do I create static class data and static class methods?
      • How can I overload constructors (or methods) in Python?
      • I try to use __spam and I get an error about _SomeClassName__spam.
      • My class defines __del__ but it is not called when I delete the object.
      • How do I get a list of all instances of a given class?
      • Why does the result of?id()?appear to be not unique?
    • Modules
      • How do I create a .pyc file?
      • How do I find the current module name?
      • How can I have modules that mutually import each other?
      • __import__(‘x.y.z’) returns <module ‘x’>; how do I get z?
      • When I edit an imported module and reimport it, the changes don’t show up. Why does this happen?

General Questions

Is there a source code level debugger with breakpoints, single-stepping, etc.?

Yes.

The pdb module is a simple but adequate console-mode debugger for Python. It is part of the standard Python library, and is?documented?inthe?Library?Reference?Manual. You can also write your own debugger by using the code for pdb as an example.

The IDLE interactive development environment, which is part of the standard Python distribution (normally available as Tools/scripts/idle), includes a graphical debugger.

PythonWin is a Python IDE that includes a GUI debugger based on pdb. The Pythonwin debugger colors breakpoints and has quite a few cool features such as debugging non-Pythonwin programs. Pythonwin is available as part of the?Python for Windows Extensions?project and as a part of the ActivePython distribution (see?https://www.activestate.com/activepython).

Boa Constructor?is an IDE and GUI builder that uses wxWidgets. It offers visual frame creation and manipulation, an object inspector, many views on the source like object browsers, inheritance hierarchies, doc string generated html documentation, an advanced debugger, integrated help, and Zope support.

Eric?is an IDE built on PyQt and the Scintilla editing component.

Pydb is a version of the standard Python debugger pdb, modified for use with DDD (Data Display Debugger), a popular graphical debugger front end. Pydb can be found at?http://bashdb.sourceforge.net/pydb/?and DDD can be found at?https://www.gnu.org/software/ddd.

There are a number of commercial Python IDEs that include graphical debuggers. They include:

  • Wing IDE (https://wingware.com/)
  • Komodo IDE (https://komodoide.com/)
  • PyCharm (https://www.jetbrains.com/pycharm/)

Is there a tool to help find bugs or perform static analysis?

Yes.

PyChecker is a static analysis tool that finds bugs in Python source code and warns about code complexity and style. You can get PyChecker from?http://pychecker.sourceforge.net/.

Pylint?is another tool that checks if a module satisfies a coding standard, and also makes it possible to write plug-ins to add a custom feature. In addition to the bug checking that PyChecker performs, Pylint offers some additional features such as checking line length, whether variable names are well-formed according to your coding standard, whether declared interfaces are fully implemented, and more.https://docs.pylint.org/?provides a full list of Pylint’s features.

How can I create a stand-alone binary from a Python script?

You don’t need the ability to compile Python to C code if all you want is a stand-alone program that users can download and run without having to install the Python distribution first. There are a number of tools that determine the set of modules required by a program and bind these modules together with a Python binary to produce a single executable.

One is to use the freeze tool, which is included in the Python source tree as?Tools/freeze. It converts Python byte code to C arrays; a C compiler you can embed all your modules into a new program, which is then linked with the standard Python modules.

It works by scanning your source recursively for import statements (in both forms) and looking for the modules in the standard Python path as well as in the source directory (for built-in modules). It then turns the bytecode for modules written in Python into C code (array initializers that can be turned into code objects using the marshal module) and creates a custom-made config file that only contains those built-in modules which are actually used in the program. It then compiles the generated C code and links it with the rest of the Python interpreter to form a self-contained binary which acts exactly like your script.

Obviously, freeze requires a C compiler. There are several other utilities which don’t. One is Thomas Heller’s py2exe (Windows only) at

http://www.py2exe.org/

Another tool is Anthony Tuininga’s?cx_Freeze.

Are there coding standards or a style guide for Python programs?

Yes. The coding style required for standard library modules is documented as?PEP 8.

My program is too slow. How do I speed it up?

That’s a tough one, in general. There are many tricks to speed up Python code; consider rewriting parts in C as a last resort.

In some cases it’s possible to automatically translate Python to C or x86 assembly language, meaning that you don’t have to modify your code to gain increased speed.

Pyrex?can compile a slightly modified version of Python code into a C extension, and can be used on many different platforms.

Psyco?is a just-in-time compiler that translates Python code into x86 assembly language. If you can use it, Psyco can provide dramatic speedups for critical functions.

The rest of this answer will discuss various tricks for squeezing a bit more speed out of Python code.?Never?apply any optimization tricks unless you know you need them, after profiling has indicated that a particular function is the heavily executed hot spot in the code. Optimizations almost always make the code less clear, and you shouldn’t pay the costs of reduced clarity (increased development time, greater likelihood of bugs) unless the resulting performance benefit is worth it.

There is a page on the wiki devoted to?performance tips.

Guido van Rossum has written up an anecdote related to optimization at?https://www.python.org/doc/essays/list2str.

One thing to notice is that function and (especially) method calls are rather expensive; if you have designed a purely OO interface with lots of tiny functions that don’t do much more than get or set an instance variable or call another method, you might consider using a more direct way such as directly accessing instance variables. Also see the standard module?profile?which makes it possible to find out where your program is spending most of its time (if you have some patience – the profiling itself can slow your program down by an order of magnitude).

Remember that many standard optimization heuristics you may know from other programming experience may well apply to Python. For example it may be faster to send output to output devices using larger writes rather than smaller ones in order to reduce the overhead of kernel system calls. Thus CGI scripts that write all output in “one shot” may be faster than those that write lots of small pieces of output.

Also, be sure to use Python’s core features where appropriate. For example, slicing allows programs to chop up lists and other sequence objects in a single tick of the interpreter’s mainloop using highly optimized C implementations. Thus to get the same effect as:

L2 = [] for i in range(3):L2.append(L1[i])

it is much shorter and far faster to use

L2 = list(L1[:3]) # "list" is redundant if L1 is a list.

Note that the functionally-oriented built-in functions such as?map(),?zip(), and friends can be a convenient accelerator for loops that perform a single task. For example to pair the elements of two lists together:

>>> >>> zip([1, 2, 3], [4, 5, 6]) [(1, 4), (2, 5), (3, 6)]

or to compute a number of sines:

>>> >>> map(math.sin, (1, 2, 3, 4)) [0.841470984808, 0.909297426826, 0.14112000806, -0.756802495308]

The operation completes very quickly in such cases.

Other examples include the?join()?and?split()?methods of string objects. For example if s1..s7 are large (10K+) strings then"".join([s1,s2,s3,s4,s5,s6,s7])?may be far faster than the more obvious?s1+s2+s3+s4+s5+s6+s7, since the “summation” will compute many subexpressions, whereas?join()?does all the copying in one pass. For manipulating strings, use the?replace()?and the?format()?methods on string objects. Use regular expressions only when you’re not dealing with constant string patterns. You may still use?the old % operations?string?%?tuple?and?string?%?dictionary.

Be sure to use the?list.sort()?built-in method to do sorting, and see the?sorting mini-HOWTO?for examples of moderately advanced usage.list.sort()?beats other techniques for sorting in all but the most extreme circumstances.

Another common trick is to “push loops into functions or methods.” For example suppose you have a program that runs slowly and you use the profiler to determine that a Python function?ff()?is being called lots of times. If you notice that?ff():

def ff(x):... # do something with x computing result...return result

tends to be called in loops like:

list = map(ff, oldlist)

or:

for x in sequence:value = ff(x)... # do something with value...

then you can often eliminate function call overhead by rewriting?ff()?to:

def ffseq(seq):resultseq = []for x in seq:... # do something with x computing result...resultseq.append(result)return resultseq

and rewrite the two examples to?list?=?ffseq(oldlist)?and to:

for value in ffseq(sequence):... # do something with value...

Single calls to?ff(x)?translate to?ffseq([x])[0]?with little penalty. Of course this technique is not always appropriate and there are other variants which you can figure out.

You can gain some performance by explicitly storing the results of a function or method lookup into a local variable. A loop like:

for key in token:dict[key] = dict.get(key, 0) + 1

resolves?dict.get?every iteration. If the method isn’t going to change, a slightly faster implementation is:

dict_get = dict.get # look up the method once for key in token:dict[key] = dict_get(key, 0) + 1

Default arguments can be used to determine values once, at compile time instead of at run time. This can only be done for functions or objects which will not be changed during program execution, such as replacing

def degree_sin(deg):return math.sin(deg * math.pi / 180.0)

with

def degree_sin(deg, factor=math.pi/180.0, sin=math.sin):return sin(deg * factor)

Because this trick uses default arguments for terms which should not be changed, it should only be used when you are not concerned with presenting a possibly confusing API to your users.

Core Language

Why am I getting an UnboundLocalError when the variable has a value?

It can be a surprise to get the UnboundLocalError in previously working code when it is modified by adding an assignment statement somewhere in the body of a function.

This code:

>>> >>> x = 10 >>> def bar(): ... print x >>> bar() 10

works, but this code:

>>> >>> x = 10 >>> def foo(): ... print x ... x += 1

results in an UnboundLocalError:

>>> >>> foo() Traceback (most recent call last):... UnboundLocalError: local variable 'x' referenced before assignment

This is because when you make an assignment to a variable in a scope, that variable becomes local to that scope and shadows any similarly named variable in the outer scope. Since the last statement in foo assigns a new value to?x, the compiler recognizes it as a local variable. Consequently when the earlier?print?x?attempts to print the uninitialized local variable and an error results.

In the example above you can access the outer scope variable by declaring it global:

>>> >>> x = 10 >>> def foobar(): ... global x ... print x ... x += 1 >>> foobar() 10

This explicit declaration is required in order to remind you that (unlike the superficially analogous situation with class and instance variables) you are actually modifying the value of the variable in the outer scope:

>>> >>> print x 11

What are the rules for local and global variables in Python?

In Python, variables that are only referenced inside a function are implicitly global. If a variable is assigned a value anywhere within the function’s body, it’s assumed to be a local unless explicitly declared as global.

Though a bit surprising at first, a moment’s consideration explains this. On one hand, requiring?global?for assigned variables provides a bar against unintended side-effects. On the other hand, if?global?was required for all global references, you’d be using?global?all the time. You’d have to declare as global every reference to a built-in function or to a component of an imported module. This clutter would defeat the usefulness of the?global?declaration for identifying side-effects.

Why do lambdas defined in a loop with different values all return the same result?

Assume you use a for loop to define a few different lambdas (or even plain functions), e.g.:

>>> >>> squares = [] >>> for x in range(5): ... squares.append(lambda: x**2)

This gives you a list that contains 5 lambdas that calculate?x**2. You might expect that, when called, they would return, respectively,0,?1,?4,?9, and?16. However, when you actually try you will see that they all return?16:

>>> >>> squares[2]() 16 >>> squares[4]() 16

This happens because?x?is not local to the lambdas, but is defined in the outer scope, and it is accessed when the lambda is called — not when it is defined. At the end of the loop, the value of?x?is?4, so all the functions now return?4**2, i.e.?16. You can also verify this by changing the value of?x?and see how the results of the lambdas change:

>>> >>> x = 8 >>> squares[2]() 64

In order to avoid this, you need to save the values in variables local to the lambdas, so that they don’t rely on the value of the global?x:

>>> >>> squares = [] >>> for x in range(5): ... squares.append(lambda n=x: n**2)

Here,?n=x?creates a new variable?n?local to the lambda and computed when the lambda is defined so that it has the same value that?x?had at that point in the loop. This means that the value of?n?will be?0?in the first lambda,?1?in the second,?2?in the third, and so on. Therefore each lambda will now return the correct result:

>>> >>> squares[2]() 4 >>> squares[4]() 16

Note that this behaviour is not peculiar to lambdas, but applies to regular functions too.

How do I share global variables across modules?

The canonical way to share information across modules within a single program is to create a special module (often called config or cfg). Just import the config module in all modules of your application; the module then becomes available as a global name. Because there is only one instance of each module, any changes made to the module object get reflected everywhere. For example:

config.py:

x = 0 # Default value of the 'x' configuration setting

mod.py:

import config config.x = 1

main.py:

import config import mod print config.x

Note that using a module is also the basis for implementing the Singleton design pattern, for the same reason.

What are the “best practices” for using import in a module?

In general, don’t use?from?modulename?import?*. Doing so clutters the importer’s namespace, and makes it much harder for linters to detect undefined names.

Import modules at the top of a file. Doing so makes it clear what other modules your code requires and avoids questions of whether the module name is in scope. Using one import per line makes it easy to add and delete module imports, but using multiple imports per line uses less screen space.

It’s good practice if you import modules in the following order:

  • standard library modules – e.g.?sys,?os,?getopt,?re
  • third-party library modules (anything installed in Python’s site-packages directory) – e.g. mx.DateTime, ZODB, PIL.Image, etc.
  • locally-developed modules
  • Only use explicit relative package imports. If you’re writing code that’s in the?package.sub.m1?module and want to import?package.sub.m2, do not just write?import?m2, even though it’s legal. Write?from?package.sub?import?m2?or?from?.?import?m2?instead.

    It is sometimes necessary to move imports to a function or class to avoid problems with circular imports. Gordon McMillan says:

    Circular imports are fine where both modules use the “import <module>” form of import. They fail when the 2nd module wants to grab a name out of the first (“from module import name”) and the import is at the top level. That’s because names in the 1st are not yet available, because the first module is busy importing the 2nd.

    In this case, if the second module is only used in one function, then the import can easily be moved into that function. By the time the import is called, the first module will have finished initializing, and the second module can do its import.

    It may also be necessary to move imports out of the top level of code if some of the modules are platform-specific. In that case, it may not even be possible to import all of the modules at the top of the file. In this case, importing the correct modules in the corresponding platform-specific code is a good option.

    Only move imports into a local scope, such as inside a function definition, if it’s necessary to solve a problem such as avoiding a circular import or are trying to reduce the initialization time of a module. This technique is especially helpful if many of the imports are unnecessary depending on how the program executes. You may also want to move imports into a function if the modules are only ever used in that function. Note that loading a module the first time may be expensive because of the one time initialization of the module, but loading a module multiple times is virtually free, costing only a couple of dictionary lookups. Even if the module name has gone out of scope, the module is probably available in?sys.modules.

    Why are default values shared between objects?

    This type of bug commonly bites neophyte programmers. Consider this function:

    def foo(mydict={}): # Danger: shared reference to one dict for all calls... compute something ...mydict[key] = valuereturn mydict

    The first time you call this function,?mydict?contains a single item. The second time,?mydict?contains two items because when?foo()?begins executing,?mydict?starts out with an item already in it.

    It is often expected that a function call creates new objects for default values. This is not what happens. Default values are created exactly once, when the function is defined. If that object is changed, like the dictionary in this example, subsequent calls to the function will refer to this changed object.

    By definition, immutable objects such as numbers, strings, tuples, and?None, are safe from change. Changes to mutable objects such as dictionaries, lists, and class instances can lead to confusion.

    Because of this feature, it is good programming practice to not use mutable objects as default values. Instead, use?None?as the default value and inside the function, check if the parameter is?None?and create a new list/dictionary/whatever if it is. For example, don’t write:

    def foo(mydict={}):...

    but:

    def foo(mydict=None):if mydict is None:mydict = {} # create a new dict for local namespace

    This feature can be useful. When you have a function that’s time-consuming to compute, a common technique is to cache the parameters and the resulting value of each call to the function, and return the cached value if the same value is requested again. This is called “memoizing”, and can be implemented like this:

    # Callers will never provide a third parameter for this function. def expensive(arg1, arg2, _cache={}):if (arg1, arg2) in _cache:return _cache[(arg1, arg2)]# Calculate the valueresult = ... expensive computation ..._cache[(arg1, arg2)] = result # Store result in the cachereturn result

    You could use a global variable containing a dictionary instead of the default value; it’s a matter of taste.

    How can I pass optional or keyword parameters from one function to another?

    Collect the arguments using the?*?and?**?specifiers in the function’s parameter list; this gives you the positional arguments as a tuple and the keyword arguments as a dictionary. You can then pass these arguments when calling another function by using?*?and?**:

    def f(x, *args, **kwargs):...kwargs['width'] = '14.3c'...g(x, *args, **kwargs)

    In the unlikely case that you care about Python versions older than 2.0, use?apply():

    def f(x, *args, **kwargs):...kwargs['width'] = '14.3c'...apply(g, (x,)+args, kwargs)

    What is the difference between arguments and parameters?

    Parameters?are defined by the names that appear in a function definition, whereas?arguments?are the values actually passed to a function when calling it. Parameters define what types of arguments a function can accept. For example, given the function definition:

    def func(foo, bar=None, **kwargs):pass

    foo,?bar?and?kwargs?are parameters of?func. However, when calling?func, for example:

    func(42, bar=314, extra=somevar)

    the values?42,?314, and?somevar?are arguments.

    Why did changing list ‘y’ also change list ‘x’?

    If you wrote code like:

    >>> >>> x = [] >>> y = x >>> y.append(10) >>> y [10] >>> x [10]

    you might be wondering why appending an element to?y?changed?x?too.

    There are two factors that produce this result:

  • Variables are simply names that refer to objects. Doing?y?=?x?doesn’t create a copy of the list – it creates a new variable?y?that refers to the same object?x?refers to. This means that there is only one object (the list), and both?x?and?y?refer to it.
  • Lists are?mutable, which means that you can change their content.
  • After the call to?append(), the content of the mutable object has changed from?[]?to?[10]. Since both the variables refer to the same object, using either name accesses the modified value?[10].

    If we instead assign an immutable object to?x:

    >>> >>> x = 5 # ints are immutable >>> y = x >>> x = x + 1 # 5 can't be mutated, we are creating a new object here >>> x 6 >>> y 5

    we can see that in this case?x?and?y?are not equal anymore. This is because integers are?immutable, and when we do?x?=?x?+?1?we are not mutating the int?5?by incrementing its value; instead, we are creating a new object (the int?6) and assigning it to?x?(that is, changing which object?x?refers to). After this assignment we have two objects (the ints?6?and?5) and two variables that refer to them (x?now refers to?6?but?y?still refers to?5).

    Some operations (for example?y.append(10)?and?y.sort()) mutate the object, whereas superficially similar operations (for example?y?=?y?+?[10]and?sorted(y)) create a new object. In general in Python (and in all cases in the standard library) a method that mutates an object will return?None?to help avoid getting the two types of operations confused. So if you mistakenly write?y.sort()?thinking it will give you a sorted copy of?y, you’ll instead end up with?None, which will likely cause your program to generate an easily diagnosed error.

    However, there is one class of operations where the same operation sometimes has different behaviors with different types: the augmented assignment operators. For example,?+=?mutates lists but not tuples or ints (a_list?+=?[1,?2,?3]?is equivalent to?a_list.extend([1,?2,?3])?and mutates?a_list, whereas?some_tuple?+=?(1,?2,?3)?and?some_int?+=?1?create new objects).

    In other words:

    • If we have a mutable object (list,?dict,?set, etc.), we can use some specific operations to mutate it and all the variables that refer to it will see the change.
    • If we have an immutable object (str,?int,?tuple, etc.), all the variables that refer to it will always see the same value, but operations that transform that value into a new value always return a new object.

    If you want to know if two variables refer to the same object or not, you can use the?is?operator, or the built-in function?id().

    How do I write a function with output parameters (call by reference)?

    Remember that arguments are passed by assignment in Python. Since assignment just creates references to objects, there’s no alias between an argument name in the caller and callee, and so no call-by-reference per se. You can achieve the desired effect in a number of ways.

  • By returning a tuple of the results:

    def func2(a, b):a = 'new-value' # a and b are local namesb = b + 1 # assigned to new objectsreturn a, b # return new valuesx, y = 'old-value', 99 x, y = func2(x, y) print x, y # output: new-value 100

    This is almost always the clearest solution.

  • By using global variables. This isn’t thread-safe, and is not recommended.

  • By passing a mutable (changeable in-place) object:

    def func1(a):a[0] = 'new-value' # 'a' references a mutable lista[1] = a[1] + 1 # changes a shared objectargs = ['old-value', 99] func1(args) print args[0], args[1] # output: new-value 100
  • By passing in a dictionary that gets mutated:

    def func3(args):args['a'] = 'new-value' # args is a mutable dictionaryargs['b'] = args['b'] + 1 # change it in-placeargs = {'a': 'old-value', 'b': 99} func3(args) print args['a'], args['b']
  • Or bundle up values in a class instance:

    class callByRef:def __init__(self, **args):for (key, value) in args.items():setattr(self, key, value)def func4(args):args.a = 'new-value' # args is a mutable callByRefargs.b = args.b + 1 # change object in-placeargs = callByRef(a='old-value', b=99) func4(args) print args.a, args.b

    There’s almost never a good reason to get this complicated.

  • Your best choice is to return a tuple containing the multiple results.

    How do you make a higher order function in Python?

    You have two choices: you can use nested scopes or you can use callable objects. For example, suppose you wanted to define?linear(a,b)which returns a function?f(x)?that computes the value?a*x+b. Using nested scopes:

    def linear(a, b):def result(x):return a * x + breturn result

    Or using a callable object:

    class linear:def __init__(self, a, b):self.a, self.b = a, bdef __call__(self, x):return self.a * x + self.b

    In both cases,

    taxes = linear(0.3, 2)

    gives a callable object where?taxes(10e6)?==?0.3?*?10e6?+?2.

    The callable object approach has the disadvantage that it is a bit slower and results in slightly longer code. However, note that a collection of callables can share their signature via inheritance:

    class exponential(linear):# __init__ inheriteddef __call__(self, x):return self.a * (x ** self.b)

    Object can encapsulate state for several methods:

    class counter:value = 0def set(self, x):self.value = xdef up(self):self.value = self.value + 1def down(self):self.value = self.value - 1count = counter() inc, dec, reset = count.up, count.down, count.set

    Here?inc(),?dec()?and?reset()?act like functions which share the same counting variable.

    How do I copy an object in Python?

    In general, try?copy.copy()?or?copy.deepcopy()?for the general case. Not all objects can be copied, but most can.

    Some objects can be copied more easily. Dictionaries have a?copy()?method:

    newdict = olddict.copy()

    Sequences can be copied by slicing:

    new_l = l[:]

    How can I find the methods or attributes of an object?

    For an instance x of a user-defined class,?dir(x)?returns an alphabetized list of the names containing the instance attributes and methods and attributes defined by its class.

    How can my code discover the name of an object?

    Generally speaking, it can’t, because objects don’t really have names. Essentially, assignment always binds a name to a value; The same is true of?def?and?class?statements, but in that case the value is a callable. Consider the following code:

    >>> >>> class A: ... pass ... >>> B = A >>> a = B() >>> b = a >>> print b <__main__.A instance at 0x16D07CC> >>> print a <__main__.A instance at 0x16D07CC>

    Arguably the class has a name: even though it is bound to two names and invoked through the name B the created instance is still reported as an instance of class A. However, it is impossible to say whether the instance’s name is a or b, since both names are bound to the same value.

    Generally speaking it should not be necessary for your code to “know the names” of particular values. Unless you are deliberately writing introspective programs, this is usually an indication that a change of approach might be beneficial.

    In comp.lang.python, Fredrik Lundh once gave an excellent analogy in answer to this question:

    The same way as you get the name of that cat you found on your porch: the cat (object) itself cannot tell you its name, and it doesn’t really care – so the only way to find out what it’s called is to ask all your neighbours (namespaces) if it’s their cat (object)...

    ....and don’t be surprised if you’ll find that it’s known by many names, or no name at all!

    What’s up with the comma operator’s precedence?

    Comma is not an operator in Python. Consider this session:

    >>> >>> "a" in "b", "a" (False, 'a')

    Since the comma is not an operator, but a separator between expressions the above is evaluated as if you had entered:

    ("a" in "b"), "a"

    not:

    "a" in ("b", "a")

    The same is true of the various assignment operators (=,?+=?etc). They are not truly operators but syntactic delimiters in assignment statements.

    Is there an equivalent of C’s ”?:” ternary operator?

    Yes, this feature was added in Python 2.5. The syntax would be as follows:

    [on_true] if [expression] else [on_false]x, y = 50, 25small = x if x < y else y

    For versions previous to 2.5 the answer would be ‘No’.

    Is it possible to write obfuscated one-liners in Python?

    Yes. Usually this is done by nesting?lambda?within?lambda. See the following three examples, due to Ulf Bartelt:

    # Primes < 1000 print filter(None,map(lambda y:y*reduce(lambda x,y:x*y!=0, map(lambda x,y=y:y%x,range(2,int(pow(y,0.5)+1))),1),range(2,1000)))# First 10 Fibonacci numbers print map(lambda x,f=lambda x,f:(f(x-1,f)+f(x-2,f)) if x>1 else 1: f(x,f), range(10))# Mandelbrot set print (lambda Ru,Ro,Iu,Io,IM,Sx,Sy:reduce(lambda x,y:x+y,map(lambda y, Iu=Iu,Io=Io,Ru=Ru,Ro=Ro,Sy=Sy,L=lambda yc,Iu=Iu,Io=Io,Ru=Ru,Ro=Ro,i=IM, Sx=Sx,Sy=Sy:reduce(lambda x,y:x+y,map(lambda x,xc=Ru,yc=yc,Ru=Ru,Ro=Ro, i=i,Sx=Sx,F=lambda xc,yc,x,y,k,f=lambda xc,yc,x,y,k,f:(k<=0)or (x*x+y*y >=4.0) or 1+f(xc,yc,x*x-y*y+xc,2.0*x*y+yc,k-1,f):f(xc,yc,x,y,k,f):chr( 64+F(Ru+x*(Ro-Ru)/Sx,yc,0,0,i)),range(Sx))):L(Iu+y*(Io-Iu)/Sy),range(Sy ))))(-2.1, 0.7, -1.2, 1.2, 30, 80, 24) # \___ ___/ \___ ___/ | | |__ lines on screen # V V | |______ columns on screen # | | |__________ maximum of "iterations" # | |_________________ range on y axis # |____________________________ range on x axis

    Don’t try this at home, kids!

    Numbers and strings

    How do I specify hexadecimal and octal integers?

    To specify an octal digit, precede the octal value with a zero, and then a lower or uppercase “o”. For example, to set the variable “a” to the octal value “10” (8 in decimal), type:

    >>> >>> a = 0o10 >>> a 8

    Hexadecimal is just as easy. Simply precede the hexadecimal number with a zero, and then a lower or uppercase “x”. Hexadecimal digits can be specified in lower or uppercase. For example, in the Python interpreter:

    >>> >>> a = 0xa5 >>> a 165 >>> b = 0XB2 >>> b 178

    Why does -22 // 10 return -3?

    It’s primarily driven by the desire that?i?%?j?have the same sign as?j. If you want that, and also want:

    i == (i // j) * j + (i % j)

    then integer division has to return the floor. C also requires that identity to hold, and then compilers that truncate?i?//?j?need to make?i?%?j?have the same sign as?i.

    There are few real use cases for?i?%?j?when?j?is negative. When?j?is positive, there are many, and in virtually all of them it’s more useful for?i?%?j?to be?>=?0. If the clock says 10 now, what did it say 200 hours ago??-190?%?12?==?2?is useful;?-190?%?12?==?-10?is a bug waiting to bite.

    Note

    ?

    On Python 2,?a?/?b?returns the same as?a?//?b?if?__future__.division?is not in effect. This is also known as “classic” division.

    How do I convert a string to a number?

    For integers, use the built-in?int()?type constructor, e.g.?int('144')?==?144. Similarly,?float()?converts to floating-point, e.g.?float('144')==?144.0.

    By default, these interpret the number as decimal, so that?int('0144')?==?144?and?int('0x144')?raises?ValueError.?int(string,?base)?takes the base to convert from as a second optional argument, so?int('0x144',?16)?==?324. If the base is specified as 0, the number is interpreted using Python’s rules: a leading ‘0’ indicates octal, and ‘0x’ indicates a hex number.

    Do not use the built-in function?eval()?if all you need is to convert strings to numbers.?eval()?will be significantly slower and it presents a security risk: someone could pass you a Python expression that might have unwanted side effects. For example, someone could pass?__import__('os').system("rm?-rf?$HOME")?which would erase your home directory.

    eval()?also has the effect of interpreting numbers as Python expressions, so that e.g.?eval('09')?gives a syntax error because Python regards numbers starting with ‘0’ as octal (base 8).

    How do I convert a number to a string?

    To convert, e.g., the number 144 to the string ‘144’, use the built-in type constructor?str(). If you want a hexadecimal or octal representation, use the built-in functions?hex()?or?oct(). For fancy formatting, see the?Format String Syntax?section, e.g.?"{:04d}".format(144)?yields?'0144'?and?"{:.3f}".format(1/3)?yields?'0.333'. You may also use?the % operator?on strings. See the library reference manual for details.

    How do I modify a string in place?

    You can’t, because strings are immutable. If you need an object with this ability, try converting the string to a list or use the array module:

    >>> >>> import io >>> s = "Hello, world" >>> a = list(s) >>> print a ['H', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd'] >>> a[7:] = list("there!") >>> ''.join(a) 'Hello, there!'>>> import array >>> a = array.array('c', s) >>> print a array('c', 'Hello, world') >>> a[0] = 'y'; print a array('c', 'yello, world') >>> a.tostring() 'yello, world'

    How do I use strings to call functions/methods?

    There are various techniques.

    • The best is to use a dictionary that maps strings to functions. The primary advantage of this technique is that the strings do not need to match the names of the functions. This is also the primary technique used to emulate a case construct:

      def a():passdef b():passdispatch = {'go': a, 'stop': b} # Note lack of parens for funcsdispatch[get_input()]() # Note trailing parens to call function
    • Use the built-in function?getattr():

      import foo getattr(foo, 'bar')()

      Note that?getattr()?works on any object, including classes, class instances, modules, and so on.

      This is used in several places in the standard library, like this:

      class Foo:def do_foo(self):...def do_bar(self):...f = getattr(foo_instance, 'do_' + opname) f()
    • Use?locals()?or?eval()?to resolve the function name:

      def myFunc():print "hello"fname = "myFunc"f = locals()[fname] f()f = eval(fname) f()

      Note: Using?eval()?is slow and dangerous. If you don’t have absolute control over the contents of the string, someone could pass a string that resulted in an arbitrary function being executed.

    Is there an equivalent to Perl’s chomp() for removing trailing newlines from strings?

    Starting with Python 2.2, you can use?S.rstrip("\r\n")?to remove all occurrences of any line terminator from the end of the string?Swithout removing other trailing whitespace. If the string?S?represents more than one line, with several empty lines at the end, the line terminators for all the blank lines will be removed:

    >>> >>> lines = ("line 1 \r\n" ... "\r\n" ... "\r\n") >>> lines.rstrip("\n\r") 'line 1 '

    Since this is typically only desired when reading text one line at a time, using?S.rstrip()?this way works well.

    For older versions of Python, there are two partial substitutes:

    • If you want to remove all trailing whitespace, use the?rstrip()?method of string objects. This removes all trailing whitespace, not just a single newline.
    • Otherwise, if there is only one line in the string?S, use?S.splitlines()[0].

    Is there a scanf() or sscanf() equivalent?

    Not as such.

    For simple input parsing, the easiest approach is usually to split the line into whitespace-delimited words using the?split()?method of string objects and then convert decimal strings to numeric values using?int()?or?float().?split()?supports an optional “sep” parameter which is useful if the line uses something other than whitespace as a separator.

    For more complicated input parsing, regular expressions are more powerful than C’s?sscanf()?and better suited for the task.

    What does ‘UnicodeError: ASCII [decoding,encoding] error: ordinal not in range(128)’ mean?

    This error indicates that your Python installation can handle only 7-bit ASCII strings. There are a couple ways to fix or work around the problem.

    If your programs must handle data in arbitrary character set encodings, the environment the application runs in will generally identify the encoding of the data it is handing you. You need to convert the input to Unicode data using that encoding. For example, a program that handles email or web input will typically find character set encoding information in Content-Type headers. This can then be used to properly convert input data to Unicode. Assuming the string referred to by?value?is encoded as UTF-8:

    value = unicode(value, "utf-8")

    will return a Unicode object. If the data is not correctly encoded as UTF-8, the above call will raise a?UnicodeError?exception.

    If you only want strings converted to Unicode which have non-ASCII data, you can try converting them first assuming an ASCII encoding, and then generate Unicode objects if that fails:

    try:x = unicode(value, "ascii") except UnicodeError:value = unicode(value, "utf-8") else:# value was valid ASCII datapass

    It’s possible to set a default encoding in a file called?sitecustomize.py?that’s part of the Python library. However, this isn’t recommended because changing the Python-wide default encoding may cause third-party extension modules to fail.

    Note that on Windows, there is an encoding known as “mbcs”, which uses an encoding specific to your current locale. In many cases, and particularly when working with COM, this may be an appropriate default encoding to use.

    Sequences (Tuples/Lists)

    How do I convert between tuples and lists?

    The type constructor?tuple(seq)?converts any sequence (actually, any iterable) into a tuple with the same items in the same order.

    For example,?tuple([1,?2,?3])?yields?(1,?2,?3)?and?tuple('abc')?yields?('a',?'b',?'c'). If the argument is a tuple, it does not make a copy but returns the same object, so it is cheap to call?tuple()?when you aren’t sure that an object is already a tuple.

    The type constructor?list(seq)?converts any sequence or iterable into a list with the same items in the same order. For example,?list((1,?2,3))?yields?[1,?2,?3]?and?list('abc')?yields?['a',?'b',?'c']. If the argument is a list, it makes a copy just like?seq[:]?would.

    What’s a negative index?

    Python sequences are indexed with positive numbers and negative numbers. For positive numbers 0 is the first index 1 is the second index and so forth. For negative indices -1 is the last index and -2 is the penultimate (next to last) index and so forth. Think of?seq[-n]?as the same as?seq[len(seq)-n].

    Using negative indices can be very convenient. For example?S[:-1]?is all of the string except for its last character, which is useful for removing the trailing newline from a string.

    How do I iterate over a sequence in reverse order?

    Use the?reversed()?built-in function, which is new in Python 2.4:

    for x in reversed(sequence):... # do something with x ...

    This won’t touch your original sequence, but build a new copy with reversed order to iterate over.

    With Python 2.3, you can use an extended slice syntax:

    for x in sequence[::-1]:... # do something with x ...

    How do you remove duplicates from a list?

    See the Python Cookbook for a long discussion of many ways to do this:

    https://code.activestate.com/recipes/52560/

    If you don’t mind reordering the list, sort it and then scan from the end of the list, deleting duplicates as you go:

    if mylist:mylist.sort()last = mylist[-1]for i in range(len(mylist)-2, -1, -1):if last == mylist[i]:del mylist[i]else:last = mylist[i]

    If all elements of the list may be used as dictionary keys (i.e. they are all hashable) this is often faster

    d = {} for x in mylist:d[x] = 1 mylist = list(d.keys())

    In Python 2.5 and later, the following is possible instead:

    mylist = list(set(mylist))

    This converts the list into a set, thereby removing duplicates, and then back into a list.

    How do you make an array in Python?

    Use a list:

    ["this", 1, "is", "an", "array"]

    Lists are equivalent to C or Pascal arrays in their time complexity; the primary difference is that a Python list can contain objects of many different types.

    The?array?module also provides methods for creating arrays of fixed types with compact representations, but they are slower to index than lists. Also note that the Numeric extensions and others define array-like structures with various characteristics as well.

    To get Lisp-style linked lists, you can emulate cons cells using tuples:

    lisp_list = ("like", ("this", ("example", None) ) )

    If mutability is desired, you could use lists instead of tuples. Here the analogue of lisp car is?lisp_list[0]?and the analogue of cdr islisp_list[1]. Only do this if you’re sure you really need to, because it’s usually a lot slower than using Python lists.

    How do I create a multidimensional list?

    You probably tried to make a multidimensional array like this:

    >>> >>> A = [[None] * 2] * 3

    This looks correct if you print it:

    >>> >>> A [[None, None], [None, None], [None, None]]

    But when you assign a value, it shows up in multiple places:

    >>> >>> A[0][0] = 5 >>> A [[5, None], [5, None], [5, None]]

    The reason is that replicating a list with?*?doesn’t create copies, it only creates references to the existing objects. The?*3?creates a list containing 3 references to the same list of length two. Changes to one row will show in all rows, which is almost certainly not what you want.

    The suggested approach is to create a list of the desired length first and then fill in each element with a newly created list:

    A = [None] * 3 for i in range(3):A[i] = [None] * 2

    This generates a list containing 3 different lists of length two. You can also use a list comprehension:

    w, h = 2, 3 A = [[None] * w for i in range(h)]

    Or, you can use an extension that provides a matrix datatype;?Numeric Python?is the best known.

    How do I apply a method to a sequence of objects?

    Use a list comprehension:

    result = [obj.method() for obj in mylist]

    More generically, you can try the following function:

    def method_map(objects, method, arguments):"""method_map([a,b], "meth", (1,2)) gives [a.meth(1,2), b.meth(1,2)]"""nobjects = len(objects)methods = map(getattr, objects, [method]*nobjects)return map(apply, methods, [arguments]*nobjects)

    Why does a_tuple[i] += [‘item’] raise an exception when the addition works?

    This is because of a combination of the fact that augmented assignment operators are?assignment?operators, and the difference between mutable and immutable objects in Python.

    This discussion applies in general when augmented assignment operators are applied to elements of a tuple that point to mutable objects, but we’ll use a?list?and?+=?as our exemplar.

    If you wrote:

    >>> >>> a_tuple = (1, 2) >>> a_tuple[0] += 1 Traceback (most recent call last):... TypeError: 'tuple' object does not support item assignment

    The reason for the exception should be immediately clear:?1?is added to the object?a_tuple[0]?points to (1), producing the result object,2, but when we attempt to assign the result of the computation,?2, to element?0?of the tuple, we get an error because we can’t change what an element of a tuple points to.

    Under the covers, what this augmented assignment statement is doing is approximately this:

    >>> >>> result = a_tuple[0] + 1 >>> a_tuple[0] = result Traceback (most recent call last):... TypeError: 'tuple' object does not support item assignment

    It is the assignment part of the operation that produces the error, since a tuple is immutable.

    When you write something like:

    >>> >>> a_tuple = (['foo'], 'bar') >>> a_tuple[0] += ['item'] Traceback (most recent call last):... TypeError: 'tuple' object does not support item assignment

    The exception is a bit more surprising, and even more surprising is the fact that even though there was an error, the append worked:

    >>> >>> a_tuple[0] ['foo', 'item']

    To see why this happens, you need to know that (a) if an object implements an?__iadd__?magic method, it gets called when the?+=?augmented assignment is executed, and its return value is what gets used in the assignment statement; and (b) for lists,?__iadd__?is equivalent to calling?extend?on the list and returning the list. That’s why we say that for lists,?+=?is a “shorthand” for?list.extend:

    >>> >>> a_list = [] >>> a_list += [1] >>> a_list [1]

    This is equivalent to:

    >>> >>> result = a_list.__iadd__([1]) >>> a_list = result

    The object pointed to by a_list has been mutated, and the pointer to the mutated object is assigned back to?a_list. The end result of the assignment is a no-op, since it is a pointer to the same object that?a_list?was previously pointing to, but the assignment still happens.

    Thus, in our tuple example what is happening is equivalent to:

    >>> >>> result = a_tuple[0].__iadd__(['item']) >>> a_tuple[0] = result Traceback (most recent call last):... TypeError: 'tuple' object does not support item assignment

    The?__iadd__?succeeds, and thus the list is extended, but even though?result?points to the same object that?a_tuple[0]?already points to, that final assignment still results in an error, because tuples are immutable.

    Dictionaries

    How can I get a dictionary to display its keys in a consistent order?

    You can’t. Dictionaries store their keys in an unpredictable order, so the display order of a dictionary’s elements will be similarly unpredictable.

    This can be frustrating if you want to save a printable version to a file, make some changes and then compare it with some other printed dictionary. In this case, use the?pprint?module to pretty-print the dictionary; the items will be presented in order sorted by the key.

    A more complicated solution is to subclass?dict?to create a?SortedDict?class that prints itself in a predictable order. Here’s one simpleminded implementation of such a class:

    class SortedDict(dict):def __repr__(self):keys = sorted(self.keys())result = ("{!r}: {!r}".format(k, self[k]) for k in keys)return "{{{}}}".format(", ".join(result))__str__ = __repr__

    This will work for many common situations you might encounter, though it’s far from a perfect solution. The largest flaw is that if some values in the dictionary are also dictionaries, their values won’t be presented in any particular order.

    I want to do a complicated sort: can you do a Schwartzian Transform in Python?

    The technique, attributed to Randal Schwartz of the Perl community, sorts the elements of a list by a metric which maps each element to its “sort value”. In Python, just use the?key?argument for the?sort()?method:

    Isorted = L[:] Isorted.sort(key=lambda s: int(s[10:15]))

    The?key?argument is new in Python 2.4, for older versions this kind of sorting is quite simple to do with list comprehensions. To sort a list of strings by their uppercase values:

    tmp1 = [(x.upper(), x) for x in L] # Schwartzian transform tmp1.sort() Usorted = [x[1] for x in tmp1]

    To sort by the integer value of a subfield extending from positions 10-15 in each string:

    tmp2 = [(int(s[10:15]), s) for s in L] # Schwartzian transform tmp2.sort() Isorted = [x[1] for x in tmp2]

    Note that Isorted may also be computed by

    def intfield(s):return int(s[10:15])def Icmp(s1, s2):return cmp(intfield(s1), intfield(s2))Isorted = L[:] Isorted.sort(Icmp)

    but since this method calls?intfield()?many times for each element of L, it is slower than the Schwartzian Transform.

    How can I sort one list by values from another list?

    Merge them into a single list of tuples, sort the resulting list, and then pick out the element you want.

    >>> >>> list1 = ["what", "I'm", "sorting", "by"] >>> list2 = ["something", "else", "to", "sort"] >>> pairs = zip(list1, list2) >>> pairs [('what', 'something'), ("I'm", 'else'), ('sorting', 'to'), ('by', 'sort')] >>> pairs.sort() >>> result = [ x[1] for x in pairs ] >>> result ['else', 'sort', 'to', 'something']

    An alternative for the last step is:

    >>> >>> result = [] >>> for p in pairs: result.append(p[1])

    If you find this more legible, you might prefer to use this instead of the final list comprehension. However, it is almost twice as slow for long lists. Why? First, the?append()?operation has to reallocate memory, and while it uses some tricks to avoid doing that each time, it still has to do it occasionally, and that costs quite a bit. Second, the expression “result.append” requires an extra attribute lookup, and third, there’s a speed reduction from having to make all those function calls.

    Objects

    What is a class?

    A class is the particular object type created by executing a class statement. Class objects are used as templates to create instance objects, which embody both the data (attributes) and code (methods) specific to a datatype.

    A class can be based on one or more other classes, called its base class(es). It then inherits the attributes and methods of its base classes. This allows an object model to be successively refined by inheritance. You might have a generic?Mailbox?class that provides basic accessor methods for a mailbox, and subclasses such as?MboxMailbox,?MaildirMailbox,?OutlookMailbox?that handle various specific mailbox formats.

    What is a method?

    A method is a function on some object?x?that you normally call as?x.name(arguments...). Methods are defined as functions inside the class definition:

    class C:def meth(self, arg):return arg * 2 + self.attribute

    What is self?

    Self is merely a conventional name for the first argument of a method. A method defined as?meth(self,?a,?b,?c)?should be called as?x.meth(a,?b,c)?for some instance?x?of the class in which the definition occurs; the called method will think it is called as?meth(x,?a,?b,?c).

    See also?Why must ‘self’ be used explicitly in method definitions and calls?.

    How do I check if an object is an instance of a given class or of a subclass of it?

    Use the built-in function?isinstance(obj,?cls). You can check if an object is an instance of any of a number of classes by providing a tuple instead of a single class, e.g.?isinstance(obj,?(class1,?class2,?...)), and can also check whether an object is one of Python’s built-in types, e.g.?isinstance(obj,?str)?or?isinstance(obj,?(int,?long,?float,?complex)).

    Note that most programs do not use?isinstance()?on user-defined classes very often. If you are developing the classes yourself, a more proper object-oriented style is to define methods on the classes that encapsulate a particular behaviour, instead of checking the object’s class and doing a different thing based on what class it is. For example, if you have a function that does something:

    def search(obj):if isinstance(obj, Mailbox):... # code to search a mailboxelif isinstance(obj, Document):... # code to search a documentelif ...

    A better approach is to define a?search()?method on all the classes and just call it:

    class Mailbox:def search(self):... # code to search a mailboxclass Document:def search(self):... # code to search a documentobj.search()

    What is delegation?

    Delegation is an object oriented technique (also called a design pattern). Let’s say you have an object?x?and want to change the behaviour of just one of its methods. You can create a new class that provides a new implementation of the method you’re interested in changing and delegates all other methods to the corresponding method of?x.

    Python programmers can easily implement delegation. For example, the following class implements a class that behaves like a file but converts all written data to uppercase:

    class UpperOut:def __init__(self, outfile):self._outfile = outfiledef write(self, s):self._outfile.write(s.upper())def __getattr__(self, name):return getattr(self._outfile, name)

    Here the?UpperOut?class redefines the?write()?method to convert the argument string to uppercase before calling the underlyingself.__outfile.write()?method. All other methods are delegated to the underlying?self.__outfile?object. The delegation is accomplished via the__getattr__?method; consult?the language reference?for more information about controlling attribute access.

    Note that for more general cases delegation can get trickier. When attributes must be set as well as retrieved, the class must define a__setattr__()?method too, and it must do so carefully. The basic implementation of?__setattr__()?is roughly equivalent to the following:

    class X:...def __setattr__(self, name, value):self.__dict__[name] = value...

    Most?__setattr__()?implementations must modify?self.__dict__?to store local state for self without causing an infinite recursion.

    How do I call a method defined in a base class from a derived class that overrides it?

    If you’re using new-style classes, use the built-in?super()?function:

    class Derived(Base):def meth(self):super(Derived, self).meth()

    If you’re using classic classes: For a class definition such as?class?Derived(Base):?...?you can call method?meth()?defined in?Base?(or one ofBase‘s base classes) as?Base.meth(self,?arguments...). Here,?Base.meth?is an unbound method, so you need to provide the?self?argument.

    How can I organize my code to make it easier to change the base class?

    You could define an alias for the base class, assign the real base class to it before your class definition, and use the alias throughout your class. Then all you have to change is the value assigned to the alias. Incidentally, this trick is also handy if you want to decide dynamically (e.g. depending on availability of resources) which base class to use. Example:

    BaseAlias = <real base class>class Derived(BaseAlias):def meth(self):BaseAlias.meth(self)...

    How do I create static class data and static class methods?

    Both static data and static methods (in the sense of C++ or Java) are supported in Python.

    For static data, simply define a class attribute. To assign a new value to the attribute, you have to explicitly use the class name in the assignment:

    class C:count = 0 # number of times C.__init__ calleddef __init__(self):C.count = C.count + 1def getcount(self):return C.count # or return self.count

    c.count?also refers to?C.count?for any?c?such that?isinstance(c,?C)?holds, unless overridden by?c?itself or by some class on the base-class search path from?c.__class__?back to?C.

    Caution: within a method of C, an assignment like?self.count?=?42?creates a new and unrelated instance named “count” in?self‘s own dict. Rebinding of a class-static data name must always specify the class whether inside a method or not:

    C.count = 314

    Static methods are possible since Python 2.2:

    class C:def static(arg1, arg2, arg3):# No 'self' parameter!...static = staticmethod(static)

    With Python 2.4’s decorators, this can also be written as

    class C:@staticmethoddef static(arg1, arg2, arg3):# No 'self' parameter!...

    However, a far more straightforward way to get the effect of a static method is via a simple module-level function:

    def getcount():return C.count

    If your code is structured so as to define one class (or tightly related class hierarchy) per module, this supplies the desired encapsulation.

    How can I overload constructors (or methods) in Python?

    This answer actually applies to all methods, but the question usually comes up first in the context of constructors.

    In C++ you’d write

    class C {C() { cout << "No arguments\n"; }C(int i) { cout << "Argument is " << i << "\n"; } }

    In Python you have to write a single constructor that catches all cases using default arguments. For example:

    class C:def __init__(self, i=None):if i is None:print "No arguments"else:print "Argument is", i

    This is not entirely equivalent, but close enough in practice.

    You could also try a variable-length argument list, e.g.

    def __init__(self, *args):...

    The same approach works for all method definitions.

    I try to use __spam and I get an error about _SomeClassName__spam.

    Variable names with double leading underscores are “mangled” to provide a simple but effective way to define class private variables. Any identifier of the form?__spam?(at least two leading underscores, at most one trailing underscore) is textually replaced with_classname__spam, where?classname?is the current class name with any leading underscores stripped.

    This doesn’t guarantee privacy: an outside user can still deliberately access the “_classname__spam” attribute, and private values are visible in the object’s?__dict__. Many Python programmers never bother to use private variable names at all.

    My class defines __del__ but it is not called when I delete the object.

    There are several possible reasons for this.

    The del statement does not necessarily call?__del__()?– it simply decrements the object’s reference count, and if this reaches zero__del__()?is called.

    If your data structures contain circular links (e.g. a tree where each child has a parent reference and each parent has a list of children) the reference counts will never go back to zero. Once in a while Python runs an algorithm to detect such cycles, but the garbage collector might run some time after the last reference to your data structure vanishes, so your?__del__()?method may be called at an inconvenient and random time. This is inconvenient if you’re trying to reproduce a problem. Worse, the order in which object’s__del__()?methods are executed is arbitrary. You can run?gc.collect()?to force a collection, but there?are?pathological cases where objects will never be collected.

    Despite the cycle collector, it’s still a good idea to define an explicit?close()?method on objects to be called whenever you’re done with them. The?close()?method can then remove attributes that refer to subobjecs. Don’t call?__del__()?directly –?__del__()?should callclose()?and?close()?should make sure that it can be called more than once for the same object.

    Another way to avoid cyclical references is to use the?weakref?module, which allows you to point to objects without incrementing their reference count. Tree data structures, for instance, should use weak references for their parent and sibling references (if they need them!).

    If the object has ever been a local variable in a function that caught an expression in an except clause, chances are that a reference to the object still exists in that function’s stack frame as contained in the stack trace. Normally, calling?sys.exc_clear()?will take care of this by clearing the last recorded exception.

    Finally, if your?__del__()?method raises an exception, a warning message is printed to?sys.stderr.

    How do I get a list of all instances of a given class?

    Python does not keep track of all instances of a class (or of a built-in type). You can program the class’s constructor to keep track of all instances by keeping a list of weak references to each instance.

    Why does the result of?id()?appear to be not unique?

    The?id()?builtin returns an integer that is guaranteed to be unique during the lifetime of the object. Since in CPython, this is the object’s memory address, it happens frequently that after an object is deleted from memory, the next freshly created object is allocated at the same position in memory. This is illustrated by this example:

    >>> >>> id(1000) 13901272 >>> id(2000) 13901272

    The two ids belong to different integer objects that are created before, and deleted immediately after execution of the?id()?call. To be sure that objects whose id you want to examine are still alive, create another reference to the object:

    >>> >>> a = 1000; b = 2000 >>> id(a) 13901272 >>> id(b) 13891296

    Modules

    How do I create a .pyc file?

    When a module is imported for the first time (or when the source is more recent than the current compiled file) a?.pyc?file containing the compiled code should be created in the same directory as the?.py?file.

    One reason that a?.pyc?file may not be created is permissions problems with the directory. This can happen, for example, if you develop as one user but run as another, such as if you are testing with a web server. Creation of a .pyc file is automatic if you’re importing a module and Python has the ability (permissions, free space, etc...) to write the compiled module back to the directory.

    Running Python on a top level script is not considered an import and no?.pyc?will be created. For example, if you have a top-level modulefoo.py?that imports another module?xyz.py, when you run?foo,?xyz.pyc?will be created since?xyz?is imported, but no?foo.pyc?file will be created since?foo.py?isn’t being imported.

    If you need to create?foo.pyc?– that is, to create a?.pyc?file for a module that is not imported – you can, using the?py_compile?andcompileall?modules.

    The?py_compile?module can manually compile any module. One way is to use the?compile()?function in that module interactively:

    >>> >>> import py_compile >>> py_compile.compile('foo.py')

    This will write the?.pyc?to the same location as?foo.py?(or you can override that with the optional parameter?cfile).

    You can also automatically compile all files in a directory or directories using the?compileall?module. You can do it from the shell prompt by running?compileall.py?and providing the path of a directory containing Python files to compile:

    python -m compileall .

    How do I find the current module name?

    A module can find out its own module name by looking at the predefined global variable?__name__. If this has the value?'__main__', the program is running as a script. Many modules that are usually used by importing them also provide a command-line interface or a self-test, and only execute this code after checking?__name__:

    def main():print 'Running test...'...if __name__ == '__main__':main()

    How can I have modules that mutually import each other?

    Suppose you have the following modules:

    foo.py:

    from bar import bar_var foo_var = 1

    bar.py:

    from foo import foo_var bar_var = 2

    The problem is that the interpreter will perform the following steps:

    • main imports foo
    • Empty globals for foo are created
    • foo is compiled and starts executing
    • foo imports bar
    • Empty globals for bar are created
    • bar is compiled and starts executing
    • bar imports foo (which is a no-op since there already is a module named foo)
    • bar.foo_var = foo.foo_var

    The last step fails, because Python isn’t done with interpreting?foo?yet and the global symbol dictionary for?foo?is still empty.

    The same thing happens when you use?import?foo, and then try to access?foo.foo_var?in global code.

    There are (at least) three possible workarounds for this problem.

    Guido van Rossum recommends avoiding all uses of?from?<module>?import?..., and placing all code inside functions. Initializations of global variables and class variables should use constants or built-in functions only. This means everything from an imported module is referenced as?<module>.<name>.

    Jim Roskind suggests performing steps in the following order in each module:

    • exports (globals, functions, and classes that don’t need imported base classes)
    • import?statements
    • active code (including globals that are initialized from imported values).

    van Rossum doesn’t like this approach much because the imports appear in a strange place, but it does work.

    Matthias Urlichs recommends restructuring your code so that the recursive import is not necessary in the first place.

    These solutions are not mutually exclusive.

    __import__(‘x.y.z’) returns <module ‘x’>; how do I get z?

    Consider using the convenience function?import_module()?from?importlib?instead:

    z = importlib.import_module('x.y.z')

    When I edit an imported module and reimport it, the changes don’t show up. Why does this happen?

    For reasons of efficiency as well as consistency, Python only reads the module file on the first time a module is imported. If it didn’t, in a program consisting of many modules where each one imports the same basic module, the basic module would be parsed and re-parsed many times. To force rereading of a changed module, do this:

    import modname reload(modname)

    Warning: this technique is not 100% fool-proof. In particular, modules containing statements like

    from modname import some_objects

    will continue to work with the old version of the imported objects. If the module contains class definitions, existing class instances will?not?be updated to use the new class definition. This can result in the following paradoxical behaviour:

    >>> >>> import cls >>> c = cls.C() # Create an instance of C >>> reload(cls) <module 'cls' from 'cls.pyc'> >>> isinstance(c, cls.C) # isinstance is false?!? False

    The nature of the problem is made clear if you print out the class objects:

    >>> >>> c.__class__ <class cls.C at 0x7352a0> >>> cls.C <class cls.C at 0x4198d0> from: https://docs.python.org/2/faq/programming.html

    總結

    以上是生活随笔為你收集整理的Python常见问题(2):编程问题 Programming FAQ的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

    日韩人妻无码一区二区三区久久99 | 熟妇激情内射com | 亚洲精品国偷拍自产在线麻豆 | 人妻熟女一区 | 人妻人人添人妻人人爱 | 捆绑白丝粉色jk震动捧喷白浆 | 内射欧美老妇wbb | 天天爽夜夜爽夜夜爽 | 日本成熟视频免费视频 | 无码国内精品人妻少妇 | 精品国产乱码久久久久乱码 | 亚洲国产精品一区二区第一页 | 欧洲欧美人成视频在线 | 色妞www精品免费视频 | 波多野结衣aⅴ在线 | 免费观看激色视频网站 | 亚拍精品一区二区三区探花 | 乱中年女人伦av三区 | 男女下面进入的视频免费午夜 | 日韩欧美中文字幕在线三区 | 一本色道久久综合亚洲精品不卡 | 免费无码的av片在线观看 | 久久精品女人天堂av免费观看 | 国产人妻久久精品二区三区老狼 | 亚洲综合久久一区二区 | 无码精品人妻一区二区三区av | 婷婷综合久久中文字幕蜜桃三电影 | 少妇高潮一区二区三区99 | 嫩b人妻精品一区二区三区 | 精品一二三区久久aaa片 | 欧美性生交xxxxx久久久 | www成人国产高清内射 | 国产午夜亚洲精品不卡下载 | 又粗又大又硬又长又爽 | 色欲综合久久中文字幕网 | 亚洲人成网站免费播放 | 99视频精品全部免费免费观看 | 久久精品国产亚洲精品 | 久久久久久国产精品无码下载 | 日日干夜夜干 | 波多野结衣aⅴ在线 | 又粗又大又硬又长又爽 | 国产另类ts人妖一区二区 | 99国产精品白浆在线观看免费 | 亚洲欧美日韩综合久久久 | 牲欲强的熟妇农村老妇女 | 水蜜桃亚洲一二三四在线 | 精品无码成人片一区二区98 | 大屁股大乳丰满人妻 | 免费人成网站视频在线观看 | 久久精品成人欧美大片 | 久久午夜无码鲁丝片 | 精品久久久中文字幕人妻 | 久久精品人妻少妇一区二区三区 | 国产人妻人伦精品1国产丝袜 | 男女爱爱好爽视频免费看 | 欧美老妇交乱视频在线观看 | 久久久国产精品无码免费专区 | 亚洲成a人片在线观看日本 | 久久久久免费精品国产 | 精品夜夜澡人妻无码av蜜桃 | 377p欧洲日本亚洲大胆 | 亚洲人成网站免费播放 | 人妻夜夜爽天天爽三区 | 久久精品丝袜高跟鞋 | yw尤物av无码国产在线观看 | аⅴ资源天堂资源库在线 | 亚洲爆乳精品无码一区二区三区 | a片在线免费观看 | 国产人妻精品一区二区三区 | 亚洲日韩一区二区 | 日日橹狠狠爱欧美视频 | 久青草影院在线观看国产 | 在线播放无码字幕亚洲 | 国产精品丝袜黑色高跟鞋 | 久久久久久国产精品无码下载 | 成人av无码一区二区三区 | 西西人体www44rt大胆高清 | 三上悠亚人妻中文字幕在线 | 国产无遮挡吃胸膜奶免费看 | 欧美性黑人极品hd | 久久久久久久女国产乱让韩 | 国产午夜福利亚洲第一 | 成人精品一区二区三区中文字幕 | 日日躁夜夜躁狠狠躁 | 四虎4hu永久免费 | 国产凸凹视频一区二区 | 5858s亚洲色大成网站www | 国産精品久久久久久久 | 未满小14洗澡无码视频网站 | 国产一区二区不卡老阿姨 | 黑人粗大猛烈进出高潮视频 | 四虎国产精品一区二区 | 亚洲熟熟妇xxxx | 性欧美牲交在线视频 | 特黄特色大片免费播放器图片 | 中文字幕人成乱码熟女app | 午夜无码区在线观看 | 99久久久无码国产精品免费 | 爆乳一区二区三区无码 | 亲嘴扒胸摸屁股激烈网站 | 日本护士xxxxhd少妇 | 少妇性荡欲午夜性开放视频剧场 | 日本熟妇乱子伦xxxx | 久久午夜无码鲁丝片午夜精品 | 久久99精品久久久久婷婷 | 国产区女主播在线观看 | 大色综合色综合网站 | 97se亚洲精品一区 | 久久久精品人妻久久影视 | 精品国产av色一区二区深夜久久 | 一二三四在线观看免费视频 | 高潮毛片无遮挡高清免费 | 国产sm调教视频在线观看 | 日本精品少妇一区二区三区 | 国产精品a成v人在线播放 | 欧美乱妇无乱码大黄a片 | 2020久久香蕉国产线看观看 | 欧美xxxxx精品 | 亚洲国产精品一区二区第一页 | 国产亚洲tv在线观看 | 成熟人妻av无码专区 | 国色天香社区在线视频 | 麻豆精产国品 | 成人性做爰aaa片免费看不忠 | 国产在线一区二区三区四区五区 | 人人妻人人澡人人爽人人精品浪潮 | 在线成人www免费观看视频 | 青草视频在线播放 | 久久亚洲中文字幕精品一区 | 欧美老妇交乱视频在线观看 | 国产精品久久久久久久影院 | 少妇性俱乐部纵欲狂欢电影 | 国产免费观看黄av片 | 亚洲一区av无码专区在线观看 | 色综合久久久久综合一本到桃花网 | 国产成人无码午夜视频在线观看 | 国产偷自视频区视频 | 性欧美大战久久久久久久 | аⅴ资源天堂资源库在线 | 久久久www成人免费毛片 | 久9re热视频这里只有精品 | 亚洲成av人综合在线观看 | 奇米影视888欧美在线观看 | 国产精品手机免费 | 人妻少妇精品久久 | 国产精品久久久一区二区三区 | 久久久久成人精品免费播放动漫 | 最近免费中文字幕中文高清百度 | 欧美乱妇无乱码大黄a片 | 久久99精品国产麻豆蜜芽 | 无码国模国产在线观看 | 麻豆av传媒蜜桃天美传媒 | 国产凸凹视频一区二区 | 日本va欧美va欧美va精品 | 国产乱人无码伦av在线a | 中文字幕中文有码在线 | 131美女爱做视频 | 久久国产精品精品国产色婷婷 | 秋霞成人午夜鲁丝一区二区三区 | 最近免费中文字幕中文高清百度 | 国产精品毛片一区二区 | 人人妻人人澡人人爽人人精品浪潮 | 精品国产一区二区三区四区在线看 | 美女毛片一区二区三区四区 | 福利一区二区三区视频在线观看 | 在线视频网站www色 | 欧美怡红院免费全部视频 | 久久99精品久久久久久动态图 | 99久久精品国产一区二区蜜芽 | 午夜理论片yy44880影院 | 国产农村乱对白刺激视频 | 国产在线无码精品电影网 | 亚洲狠狠婷婷综合久久 | 任你躁国产自任一区二区三区 | 国产 精品 自在自线 | 天堂а√在线地址中文在线 | 国产精品a成v人在线播放 | 国产精品免费大片 | 亚洲色www成人永久网址 | 国产精品人妻一区二区三区四 | 亚洲国产精品久久人人爱 | 免费无码肉片在线观看 | a片免费视频在线观看 | 日本精品人妻无码77777 天堂一区人妻无码 | 大肉大捧一进一出好爽视频 | 76少妇精品导航 | 大色综合色综合网站 | 精品aⅴ一区二区三区 | 熟妇人妻无码xxx视频 | 人人爽人人澡人人高潮 | 伊人久久大香线蕉av一区二区 | 少妇厨房愉情理9仑片视频 | 亚洲人成影院在线观看 | 成年美女黄网站色大免费全看 | 99久久99久久免费精品蜜桃 | 亚洲日韩av一区二区三区四区 | 欧美亚洲国产一区二区三区 | 爱做久久久久久 | 亚洲gv猛男gv无码男同 | 久久国产精品偷任你爽任你 | 大乳丰满人妻中文字幕日本 | 天堂亚洲2017在线观看 | 红桃av一区二区三区在线无码av | 成熟女人特级毛片www免费 | 国产真实夫妇视频 | 中文毛片无遮挡高清免费 | 成人影院yy111111在线观看 | 性色av无码免费一区二区三区 | 丝袜足控一区二区三区 | 一本久久a久久精品亚洲 | 欧美 丝袜 自拍 制服 另类 | 久久久久99精品成人片 | 日韩亚洲欧美中文高清在线 | 国产绳艺sm调教室论坛 | 丁香花在线影院观看在线播放 | 精品国产国产综合精品 | 在线а√天堂中文官网 | 熟妇人妻中文av无码 | 国精产品一品二品国精品69xx | 麻豆国产丝袜白领秘书在线观看 | 国模大胆一区二区三区 | 伊在人天堂亚洲香蕉精品区 | 国产又粗又硬又大爽黄老大爷视 | 国产精品理论片在线观看 | 色综合视频一区二区三区 | 丰满少妇弄高潮了www | 精品亚洲韩国一区二区三区 | 性欧美大战久久久久久久 | 最近免费中文字幕中文高清百度 | 日韩 欧美 动漫 国产 制服 | 亚洲热妇无码av在线播放 | 国精品人妻无码一区二区三区蜜柚 | 国产精品高潮呻吟av久久 | 一区二区三区高清视频一 | 国产精品久久久久久久影院 | 人妻体内射精一区二区三四 | 亚洲国产欧美日韩精品一区二区三区 | 亚洲区小说区激情区图片区 | 中文字幕无码日韩欧毛 | 未满成年国产在线观看 | 秋霞成人午夜鲁丝一区二区三区 | 亚洲啪av永久无码精品放毛片 | 国产黑色丝袜在线播放 | 亚洲の无码国产の无码步美 | 国产精品久久久久久久9999 | 在线看片无码永久免费视频 | 亚洲精品欧美二区三区中文字幕 | 人妻尝试又大又粗久久 | a在线观看免费网站大全 | 国产在热线精品视频 | 成人欧美一区二区三区黑人 | 丰满人妻被黑人猛烈进入 | 少妇愉情理伦片bd | 国产成人精品一区二区在线小狼 | 色综合久久88色综合天天 | 久精品国产欧美亚洲色aⅴ大片 | 日本一区二区三区免费高清 | 伊人久久婷婷五月综合97色 | 亚洲精品中文字幕久久久久 | 国产无av码在线观看 | 国产亚洲精品久久久久久大师 | 理论片87福利理论电影 | 日韩精品一区二区av在线 | 啦啦啦www在线观看免费视频 | 久久国内精品自在自线 | 成熟人妻av无码专区 | 国产在线无码精品电影网 | 国产suv精品一区二区五 | 77777熟女视频在线观看 а天堂中文在线官网 | 亚洲综合在线一区二区三区 | 亚洲自偷自拍另类第1页 | 精品久久综合1区2区3区激情 | 激情内射亚州一区二区三区爱妻 | 国精品人妻无码一区二区三区蜜柚 | 久久亚洲日韩精品一区二区三区 | 福利一区二区三区视频在线观看 | 久久无码中文字幕免费影院蜜桃 | 粉嫩少妇内射浓精videos | 久久久久成人精品免费播放动漫 | 久久久婷婷五月亚洲97号色 | 国产美女极度色诱视频www | 亚洲综合无码久久精品综合 | 国产精品免费大片 | 久久综合色之久久综合 | 99精品国产综合久久久久五月天 | 扒开双腿疯狂进出爽爽爽视频 | 中文字幕乱码中文乱码51精品 | 精品 日韩 国产 欧美 视频 | 少妇一晚三次一区二区三区 | 鲁鲁鲁爽爽爽在线视频观看 | 老子影院午夜精品无码 | 国产 精品 自在自线 | 久久综合激激的五月天 | 中文字幕av无码一区二区三区电影 | 麻豆蜜桃av蜜臀av色欲av | 在线视频网站www色 | 少妇一晚三次一区二区三区 | 亚洲天堂2017无码 | 国产乱人无码伦av在线a | 免费人成网站视频在线观看 | 乱人伦人妻中文字幕无码久久网 | 国产乱人偷精品人妻a片 | a片在线免费观看 | 国产成人人人97超碰超爽8 | 国产高潮视频在线观看 | 少妇性荡欲午夜性开放视频剧场 | 丰满少妇人妻久久久久久 | 国产日产欧产精品精品app | 97精品国产97久久久久久免费 | 大地资源网第二页免费观看 | 国产精品亚洲综合色区韩国 | 波多野42部无码喷潮在线 | 欧美人与善在线com | 玩弄少妇高潮ⅹxxxyw | 色情久久久av熟女人妻网站 | 任你躁在线精品免费 | 国产卡一卡二卡三 | 久久亚洲精品中文字幕无男同 | 成人综合网亚洲伊人 | 人人妻人人澡人人爽欧美一区九九 | 丰满少妇人妻久久久久久 | 欧美成人免费全部网站 | 亚洲gv猛男gv无码男同 | 大屁股大乳丰满人妻 | 鲁鲁鲁爽爽爽在线视频观看 | 99精品视频在线观看免费 | 狠狠cao日日穞夜夜穞av | 久久久久久a亚洲欧洲av冫 | a片免费视频在线观看 | 国内精品久久毛片一区二区 | 欧美怡红院免费全部视频 | 中文字幕av无码一区二区三区电影 | 国产精品美女久久久网av | 狠狠色丁香久久婷婷综合五月 | 久久久久久国产精品无码下载 | 国产乡下妇女做爰 | 欧美高清在线精品一区 | 国产精品va在线播放 | 亚洲 a v无 码免 费 成 人 a v | 荫蒂添的好舒服视频囗交 | 性色欲情网站iwww九文堂 | 国产av一区二区三区最新精品 | 呦交小u女精品视频 | 日韩精品无码一本二本三本色 | 久久久久成人精品免费播放动漫 | 国产精品办公室沙发 | 波多野结衣 黑人 | 国产亚洲人成a在线v网站 | 色综合天天综合狠狠爱 | 中文字幕av无码一区二区三区电影 | 小泽玛莉亚一区二区视频在线 | 精品国产乱码久久久久乱码 | 国产亲子乱弄免费视频 | 玩弄人妻少妇500系列视频 | 日韩av无码一区二区三区不卡 | 国产偷国产偷精品高清尤物 | 久久久久久av无码免费看大片 | 久久人人爽人人爽人人片ⅴ | 欧美喷潮久久久xxxxx | 久久亚洲精品中文字幕无男同 | 色综合久久久久综合一本到桃花网 | 男人和女人高潮免费网站 | 久久久久国色av免费观看性色 | 色综合久久88色综合天天 | 国产精品久久久久久亚洲影视内衣 | 俄罗斯老熟妇色xxxx | 亚洲欧美精品aaaaaa片 | 大胆欧美熟妇xx | 久久综合给合久久狠狠狠97色 | 丰满少妇高潮惨叫视频 | 无码毛片视频一区二区本码 | 国内少妇偷人精品视频免费 | 精品无码国产自产拍在线观看蜜 | 欧美一区二区三区 | 久久久久成人片免费观看蜜芽 | 国产精品亚洲五月天高清 | 亚洲狠狠婷婷综合久久 | 未满小14洗澡无码视频网站 | 双乳奶水饱满少妇呻吟 | 麻豆精产国品 | 国产亚洲欧美日韩亚洲中文色 | 中国女人内谢69xxxx | a在线亚洲男人的天堂 | 午夜免费福利小电影 | 亚洲日本va中文字幕 | 天下第一社区视频www日本 | 亚洲成色www久久网站 | 国产又粗又硬又大爽黄老大爷视 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 日本护士毛茸茸高潮 | 55夜色66夜色国产精品视频 | 中文字幕av日韩精品一区二区 | 亚洲日韩av片在线观看 | 亚洲精品久久久久久久久久久 | 国精产品一品二品国精品69xx | 国产精品亚洲综合色区韩国 | 色一情一乱一伦一视频免费看 | 波多野结衣乳巨码无在线观看 | 亚洲日韩乱码中文无码蜜桃臀网站 | 成人亚洲精品久久久久软件 | 波多野结衣 黑人 | 激情国产av做激情国产爱 | 无码中文字幕色专区 | 美女极度色诱视频国产 | 国产av久久久久精东av | 国产精品无套呻吟在线 | 欧美 亚洲 国产 另类 | 国产精华av午夜在线观看 | 永久免费观看美女裸体的网站 | av无码电影一区二区三区 | 在线精品亚洲一区二区 | 亚洲精品国产精品乱码不卡 | 欧美性生交活xxxxxdddd | 扒开双腿吃奶呻吟做受视频 | 一二三四在线观看免费视频 | 欧美国产日产一区二区 | 国产一区二区不卡老阿姨 | 国产精品成人av在线观看 | 中文字幕乱码中文乱码51精品 | 国产日产欧产精品精品app | 国产超级va在线观看视频 | 久久久亚洲欧洲日产国码αv | 欧美日韩精品 | 亚洲精品美女久久久久久久 | 国产成人亚洲综合无码 | 色婷婷av一区二区三区之红樱桃 | 久久97精品久久久久久久不卡 | 国产成人一区二区三区在线观看 | 亚洲a无码综合a国产av中文 | 国产午夜精品一区二区三区嫩草 | 亚洲 另类 在线 欧美 制服 | 欧美高清在线精品一区 | 亚洲综合无码久久精品综合 | 岛国片人妻三上悠亚 | 四十如虎的丰满熟妇啪啪 | 日本熟妇浓毛 | 亚洲精品无码国产 | 日韩精品久久久肉伦网站 | 一区二区三区高清视频一 | 一本久久a久久精品亚洲 | 精品日本一区二区三区在线观看 | 天下第一社区视频www日本 | 成人亚洲精品久久久久软件 | 国产亚洲欧美日韩亚洲中文色 | 娇妻被黑人粗大高潮白浆 | 国产艳妇av在线观看果冻传媒 | 又湿又紧又大又爽a视频国产 | 伊人久久大香线焦av综合影院 | 国产综合在线观看 | 国产精品香蕉在线观看 | 中文字幕无码热在线视频 | 少妇激情av一区二区 | 青青青手机频在线观看 | 亚洲欧美综合区丁香五月小说 | 国语精品一区二区三区 | 亚洲欧美日韩国产精品一区二区 | 自拍偷自拍亚洲精品10p | 无码播放一区二区三区 | 无码免费一区二区三区 | 日本精品人妻无码免费大全 | 伊人久久大香线焦av综合影院 | 精品乱子伦一区二区三区 | 曰韩少妇内射免费播放 | 狠狠色噜噜狠狠狠7777奇米 | 最新国产乱人伦偷精品免费网站 | 亚洲毛片av日韩av无码 | 一本久久a久久精品亚洲 | 亚洲国产精品久久久久久 | 无码人妻丰满熟妇区五十路百度 | 亚洲 激情 小说 另类 欧美 | 人妻少妇精品无码专区动漫 | 一本色道久久综合亚洲精品不卡 | 日日摸日日碰夜夜爽av | 欧美亚洲日韩国产人成在线播放 | 对白脏话肉麻粗话av | а√天堂www在线天堂小说 | 少妇厨房愉情理9仑片视频 | 亚洲精品欧美二区三区中文字幕 | 内射老妇bbwx0c0ck | 国产精品久久久午夜夜伦鲁鲁 | 中文字幕无线码免费人妻 | 人人妻人人澡人人爽人人精品浪潮 | 国产九九九九九九九a片 | 日韩精品无码一本二本三本色 | 久久综合给合久久狠狠狠97色 | 高清不卡一区二区三区 | 国产成人综合色在线观看网站 | 国产特级毛片aaaaaa高潮流水 | 国产无av码在线观看 | 国产精品沙发午睡系列 | 图片小说视频一区二区 | 国产精品永久免费视频 | 国语自产偷拍精品视频偷 | 久久国产劲爆∧v内射 | 国产一区二区三区影院 | 性欧美牲交在线视频 | 国产精品多人p群无码 | 疯狂三人交性欧美 | 玩弄少妇高潮ⅹxxxyw | 日产精品高潮呻吟av久久 | 日本在线高清不卡免费播放 | 免费视频欧美无人区码 | 无码av免费一区二区三区试看 | 国产成人无码av片在线观看不卡 | 国内精品人妻无码久久久影院蜜桃 | 精品一区二区三区无码免费视频 | 国产suv精品一区二区五 | 亚洲狠狠婷婷综合久久 | 国产午夜亚洲精品不卡下载 | 性做久久久久久久久 | 国产真人无遮挡作爱免费视频 | 亚洲娇小与黑人巨大交 | 亚洲日本va午夜在线电影 | 色婷婷欧美在线播放内射 | 亚洲人成网站免费播放 | 四虎永久在线精品免费网址 | 日日噜噜噜噜夜夜爽亚洲精品 | 玩弄中年熟妇正在播放 | 久久99精品国产麻豆 | 粗大的内捧猛烈进出视频 | 亲嘴扒胸摸屁股激烈网站 | 国产精品无套呻吟在线 | 精品无码av一区二区三区 | 爆乳一区二区三区无码 | 国产精品爱久久久久久久 | 熟妇女人妻丰满少妇中文字幕 | av香港经典三级级 在线 | 夜先锋av资源网站 | 日日摸日日碰夜夜爽av | 亚洲中文字幕va福利 | 日韩精品无码一本二本三本色 | 免费观看激色视频网站 | 中文字幕无码日韩专区 | 99久久精品日本一区二区免费 | 国产精品18久久久久久麻辣 | 日本www一道久久久免费榴莲 | 亚洲毛片av日韩av无码 | 久久精品女人天堂av免费观看 | 无码帝国www无码专区色综合 | 日本熟妇大屁股人妻 | 国产免费久久精品国产传媒 | 亚洲综合无码久久精品综合 | 成人亚洲精品久久久久 | 欧美性猛交内射兽交老熟妇 | 国产精品无码一区二区三区不卡 | 国产内射老熟女aaaa | 亚洲日韩av一区二区三区中文 | 婷婷丁香六月激情综合啪 | 4hu四虎永久在线观看 | 无码乱肉视频免费大全合集 | 无套内谢的新婚少妇国语播放 | 国产激情一区二区三区 | 国产av久久久久精东av | 99久久99久久免费精品蜜桃 | 国产熟女一区二区三区四区五区 | 18精品久久久无码午夜福利 | 中文字幕人妻无码一区二区三区 | 少妇厨房愉情理9仑片视频 | 久久精品国产大片免费观看 | 少妇厨房愉情理9仑片视频 | 97资源共享在线视频 | 精品亚洲韩国一区二区三区 | 水蜜桃亚洲一二三四在线 | 久久视频在线观看精品 | 青草青草久热国产精品 | 国产精品亚洲综合色区韩国 | 熟妇人妻无乱码中文字幕 | 久久精品国产日本波多野结衣 | 成人免费无码大片a毛片 | 国产成人无码区免费内射一片色欲 | 在线播放免费人成毛片乱码 | 国产精品理论片在线观看 | 亚洲中文字幕在线观看 | 午夜嘿嘿嘿影院 | 亚洲 高清 成人 动漫 | 欧美色就是色 | 亚洲中文字幕无码一久久区 | www成人国产高清内射 | 国产亚洲精品久久久久久 | 人妻中文无码久热丝袜 | 日日夜夜撸啊撸 | 一个人看的www免费视频在线观看 | 樱花草在线社区www | 免费无码肉片在线观看 | 国产情侣作爱视频免费观看 | 三上悠亚人妻中文字幕在线 | 亚洲一区二区三区香蕉 | 中文字幕无码日韩专区 | 超碰97人人做人人爱少妇 | 国产成人无码av在线影院 | 国产精品无码一区二区三区不卡 | 牲交欧美兽交欧美 | 曰本女人与公拘交酡免费视频 | 欧美黑人性暴力猛交喷水 | 亚洲综合伊人久久大杳蕉 | 亚洲综合色区中文字幕 | 色综合天天综合狠狠爱 | 伊人久久大香线蕉av一区二区 | 丁香啪啪综合成人亚洲 | 国产欧美精品一区二区三区 | 国产农村乱对白刺激视频 | av香港经典三级级 在线 | 国产熟妇另类久久久久 | 丝袜美腿亚洲一区二区 | 色综合久久久久综合一本到桃花网 | 永久免费观看国产裸体美女 | 自拍偷自拍亚洲精品被多人伦好爽 | 成人动漫在线观看 | 国产免费久久久久久无码 | 亚洲精品久久久久久久久久久 | 熟妇人妻无码xxx视频 | 国产性生大片免费观看性 | 露脸叫床粗话东北少妇 | 久久无码人妻影院 | 午夜精品一区二区三区的区别 | 日本精品久久久久中文字幕 | 在线观看免费人成视频 | 亚洲色无码一区二区三区 | 性欧美牲交在线视频 | 亚洲国产精品无码久久久久高潮 | 天天摸天天透天天添 | 亚洲国产精品久久久久久 | 女人被男人躁得好爽免费视频 | 黑森林福利视频导航 | 亚洲精品一区二区三区四区五区 | 澳门永久av免费网站 | 国产精品-区区久久久狼 | 精品亚洲成av人在线观看 | 奇米影视7777久久精品人人爽 | 福利一区二区三区视频在线观看 | 欧美阿v高清资源不卡在线播放 | 日韩 欧美 动漫 国产 制服 | 欧美xxxx黑人又粗又长 | 精品久久8x国产免费观看 | 九九综合va免费看 | 日韩无套无码精品 | 国产香蕉尹人综合在线观看 | 精品国产一区av天美传媒 | 日日碰狠狠躁久久躁蜜桃 | 日本精品少妇一区二区三区 | 天天摸天天透天天添 | 日日橹狠狠爱欧美视频 | 亚洲精品一区二区三区四区五区 | 亚洲 激情 小说 另类 欧美 | 亚洲国产精品久久久久久 | 性生交大片免费看l | 亚洲码国产精品高潮在线 | 小鲜肉自慰网站xnxx | 乌克兰少妇性做爰 | 国产精品美女久久久网av | 久久久久99精品国产片 | 亚洲成熟女人毛毛耸耸多 | 最近的中文字幕在线看视频 | 极品嫩模高潮叫床 | 精品久久久中文字幕人妻 | 麻豆md0077饥渴少妇 | 无遮无挡爽爽免费视频 | aⅴ在线视频男人的天堂 | 熟妇人妻无码xxx视频 | 精品成人av一区二区三区 | 国产精品无码mv在线观看 | 人人妻人人澡人人爽精品欧美 | 无码av免费一区二区三区试看 | 欧美丰满熟妇xxxx性ppx人交 | 97精品国产97久久久久久免费 | 欧美freesex黑人又粗又大 | 97夜夜澡人人爽人人喊中国片 | 亚洲精品午夜无码电影网 | 精品成在人线av无码免费看 | 久久综合色之久久综合 | 亚洲人成网站色7799 | 日日麻批免费40分钟无码 | 大乳丰满人妻中文字幕日本 | 综合激情五月综合激情五月激情1 | 波多野结衣av在线观看 | 久久国内精品自在自线 | 国产 精品 自在自线 | 六月丁香婷婷色狠狠久久 | 中文字幕无码av波多野吉衣 | 乱人伦人妻中文字幕无码 | 青青草原综合久久大伊人精品 | 精品一区二区三区无码免费视频 | 性欧美熟妇videofreesex | 亚洲日韩乱码中文无码蜜桃臀网站 | 伊人久久婷婷五月综合97色 | 亚洲日本va午夜在线电影 | 欧美大屁股xxxxhd黑色 | 国产 精品 自在自线 | 国产欧美亚洲精品a | 少女韩国电视剧在线观看完整 | 国产美女极度色诱视频www | 久9re热视频这里只有精品 | 无套内射视频囯产 | 好爽又高潮了毛片免费下载 | 亚洲日韩av一区二区三区四区 | 国产精品18久久久久久麻辣 | 久久亚洲a片com人成 | 国产精品高潮呻吟av久久 | 人妻中文无码久热丝袜 | 日产国产精品亚洲系列 | 久久综合给合久久狠狠狠97色 | 精品人人妻人人澡人人爽人人 | 亚洲日韩一区二区三区 | 午夜性刺激在线视频免费 | 人妻天天爽夜夜爽一区二区 | 高清无码午夜福利视频 | 国产偷自视频区视频 | 国产精品18久久久久久麻辣 | 玩弄中年熟妇正在播放 | www一区二区www免费 | 伊人久久婷婷五月综合97色 | 成人精品天堂一区二区三区 | 成人无码精品一区二区三区 | 少妇人妻偷人精品无码视频 | 大色综合色综合网站 | 亚洲国产一区二区三区在线观看 | 丰满少妇高潮惨叫视频 | 少妇性俱乐部纵欲狂欢电影 | 国产成人精品一区二区在线小狼 | 精品国产一区二区三区av 性色 | 亚洲啪av永久无码精品放毛片 | 天天燥日日燥 | aⅴ在线视频男人的天堂 | 无遮无挡爽爽免费视频 | 日本一卡二卡不卡视频查询 | 暴力强奷在线播放无码 | 久久99精品久久久久婷婷 | 午夜福利电影 | 亚洲小说图区综合在线 | 久久久久久亚洲精品a片成人 | 无码人妻丰满熟妇区毛片18 | 欧美自拍另类欧美综合图片区 | 欧美色就是色 | 精品夜夜澡人妻无码av蜜桃 | 久久精品女人天堂av免费观看 | 黑人巨大精品欧美一区二区 | 国产国语老龄妇女a片 | 久久久久成人精品免费播放动漫 | 无码av免费一区二区三区试看 | 无码任你躁久久久久久久 | 男女爱爱好爽视频免费看 | 久久久国产一区二区三区 | 成人无码精品1区2区3区免费看 | 无码人妻丰满熟妇区五十路百度 | 欧美大屁股xxxxhd黑色 | 亚洲欧美日韩国产精品一区二区 | 大屁股大乳丰满人妻 | 国产明星裸体无码xxxx视频 | 在线精品亚洲一区二区 | 色综合久久久无码中文字幕 | 久久精品99久久香蕉国产色戒 | 人人妻人人澡人人爽欧美精品 | 18禁黄网站男男禁片免费观看 | 色一情一乱一伦 | 激情五月综合色婷婷一区二区 | 捆绑白丝粉色jk震动捧喷白浆 | а√天堂www在线天堂小说 | www国产亚洲精品久久久日本 | 少女韩国电视剧在线观看完整 | 欧美日韩视频无码一区二区三 | 欧美国产亚洲日韩在线二区 | 久久综合九色综合97网 | 1000部啪啪未满十八勿入下载 | 久久人人爽人人爽人人片av高清 | 国产特级毛片aaaaaaa高清 | 白嫩日本少妇做爰 | 亚洲欧洲日本无在线码 | 亚洲一区二区三区香蕉 | 国产偷抇久久精品a片69 | 乱人伦中文视频在线观看 | 澳门永久av免费网站 | 大屁股大乳丰满人妻 | 亚洲成色www久久网站 | 免费无码肉片在线观看 | 中文字幕无码人妻少妇免费 | 成熟人妻av无码专区 | 免费看男女做好爽好硬视频 | 熟女体下毛毛黑森林 | 精品久久久无码人妻字幂 | 色综合久久88色综合天天 | 国产成人久久精品流白浆 | 亚洲中文字幕久久无码 | 成人无码视频在线观看网站 | 秋霞成人午夜鲁丝一区二区三区 | 性生交片免费无码看人 | 亚洲欧美日韩综合久久久 | 偷窥日本少妇撒尿chinese | 亚洲日本一区二区三区在线 | 国产色视频一区二区三区 | 大肉大捧一进一出视频出来呀 | 国产免费观看黄av片 | 国产另类ts人妖一区二区 | 免费无码午夜福利片69 | 亚洲性无码av中文字幕 | 精品 日韩 国产 欧美 视频 | 久久人人爽人人爽人人片av高清 | 亚洲国产综合无码一区 | 无码免费一区二区三区 | 一本大道久久东京热无码av | 日韩亚洲欧美中文高清在线 | 在线看片无码永久免费视频 | 高清不卡一区二区三区 | 噜噜噜亚洲色成人网站 | 国产人妻精品一区二区三区 | 亚洲中文字幕在线无码一区二区 | 亚洲综合无码一区二区三区 | 俺去俺来也www色官网 | 人人妻人人澡人人爽欧美精品 | 三级4级全黄60分钟 | 亚洲中文字幕在线无码一区二区 | 狂野欧美激情性xxxx | 欧洲精品码一区二区三区免费看 | 少妇久久久久久人妻无码 | 精品无人国产偷自产在线 | 国产综合色产在线精品 | 一本久道久久综合婷婷五月 | 九一九色国产 | 色妞www精品免费视频 | 成人欧美一区二区三区黑人 | 中文字幕无码av激情不卡 | 精品成在人线av无码免费看 | 男女下面进入的视频免费午夜 | 女人高潮内射99精品 | 国产sm调教视频在线观看 | 精品无码一区二区三区的天堂 | 熟妇女人妻丰满少妇中文字幕 | 久久亚洲日韩精品一区二区三区 | 国产熟女一区二区三区四区五区 | 国产人妻精品午夜福利免费 | 亚洲va欧美va天堂v国产综合 | 天堂久久天堂av色综合 | 成人精品视频一区二区三区尤物 | 欧美熟妇另类久久久久久不卡 | 国产乱子伦视频在线播放 | 国产无av码在线观看 | 精品国产乱码久久久久乱码 | 久久久久国色av免费观看性色 | 国产精品毛片一区二区 | 白嫩日本少妇做爰 | 人人妻在人人 | 无码人妻黑人中文字幕 | 欧美黑人性暴力猛交喷水 | 日本护士毛茸茸高潮 | 亚洲人成网站在线播放942 | 国产无套粉嫩白浆在线 | 67194成是人免费无码 | 国产成人无码专区 | 极品尤物被啪到呻吟喷水 | a在线观看免费网站大全 | 亚洲性无码av中文字幕 | 成在人线av无码免观看麻豆 | 兔费看少妇性l交大片免费 | 国产精品美女久久久 | 国产超级va在线观看视频 | 欧美老妇交乱视频在线观看 | 我要看www免费看插插视频 | 波多野结衣aⅴ在线 | 久久久久久久久蜜桃 | 午夜福利一区二区三区在线观看 | 色综合久久久久综合一本到桃花网 | 中文字幕人妻丝袜二区 | 午夜时刻免费入口 | 久久久久久久人妻无码中文字幕爆 | 精品国产一区二区三区av 性色 | 99re在线播放 | 亚洲精品一区二区三区大桥未久 | 国产绳艺sm调教室论坛 | 色综合久久久无码中文字幕 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 亚洲a无码综合a国产av中文 | 国产一精品一av一免费 | 天堂а√在线地址中文在线 | 亚洲国产精品无码一区二区三区 | 久久五月精品中文字幕 | 中文字幕无码av波多野吉衣 | 亚洲精品国偷拍自产在线麻豆 | 伊在人天堂亚洲香蕉精品区 | 曰韩少妇内射免费播放 | www成人国产高清内射 | 人妻体内射精一区二区三四 | 天干天干啦夜天干天2017 | 国产精品美女久久久网av | 蜜桃av抽搐高潮一区二区 | 日韩欧美群交p片內射中文 | 日产精品高潮呻吟av久久 | 国产猛烈高潮尖叫视频免费 | 亚洲成a人片在线观看无码 | 思思久久99热只有频精品66 | 免费无码一区二区三区蜜桃大 | 亚洲精品综合五月久久小说 | 无码午夜成人1000部免费视频 | 精品一二三区久久aaa片 | 精品国产一区二区三区四区在线看 | 国产av久久久久精东av | 精品久久久久久亚洲精品 | 日日碰狠狠丁香久燥 | 300部国产真实乱 | 装睡被陌生人摸出水好爽 | 激情国产av做激情国产爱 | 人妻少妇精品无码专区二区 | 最新国产乱人伦偷精品免费网站 | 99久久久无码国产aaa精品 | 熟女少妇在线视频播放 | 成人无码影片精品久久久 | 亚洲爆乳无码专区 | 精品少妇爆乳无码av无码专区 | 欧美 亚洲 国产 另类 | 国产av人人夜夜澡人人爽麻豆 | 97无码免费人妻超级碰碰夜夜 | 男女爱爱好爽视频免费看 | 国产亚洲精品久久久久久大师 | 久久亚洲精品中文字幕无男同 | 鲁鲁鲁爽爽爽在线视频观看 | 性色欲网站人妻丰满中文久久不卡 | 亚洲日韩av一区二区三区中文 | 色一情一乱一伦 | 国产亚洲人成在线播放 | 亚洲爆乳无码专区 | 国产成人一区二区三区在线观看 | 国产精品沙发午睡系列 | 欧美freesex黑人又粗又大 | 免费无码肉片在线观看 | 无码人妻丰满熟妇区五十路百度 | 动漫av网站免费观看 | 国产内射爽爽大片视频社区在线 | 亚洲欧美日韩综合久久久 | 久久久中文字幕日本无吗 | 亚洲欧美日韩国产精品一区二区 | 欧美高清在线精品一区 | 国产精华av午夜在线观看 | 国产又爽又猛又粗的视频a片 | 在线观看欧美一区二区三区 | 又大又硬又黄的免费视频 | 熟妇人妻激情偷爽文 | 国产在线aaa片一区二区99 | 久久久久亚洲精品中文字幕 | 亚洲狠狠色丁香婷婷综合 | 精品国产麻豆免费人成网站 | 亚洲区小说区激情区图片区 | 日本乱人伦片中文三区 | 久久精品成人欧美大片 | 东京热无码av男人的天堂 | 日本成熟视频免费视频 | 国产内射老熟女aaaa | 午夜福利不卡在线视频 | 亚洲精品成人福利网站 | 免费国产成人高清在线观看网站 | 成人精品视频一区二区三区尤物 | 欧美三级不卡在线观看 | 精品无码一区二区三区的天堂 | 国内精品一区二区三区不卡 | 99久久精品午夜一区二区 | 久久99精品久久久久久 | 亚洲日本在线电影 | 天堂无码人妻精品一区二区三区 | 日韩人妻少妇一区二区三区 | 国产欧美精品一区二区三区 | 日本乱偷人妻中文字幕 | 熟妇人妻无码xxx视频 | 亚洲精品成人福利网站 | 人妻夜夜爽天天爽三区 | 国产欧美亚洲精品a | 帮老师解开蕾丝奶罩吸乳网站 | 最近中文2019字幕第二页 | 牲欲强的熟妇农村老妇女 | 日韩人妻无码一区二区三区久久99 | 亚欧洲精品在线视频免费观看 | 精品国产一区二区三区四区 | 精品久久久久久亚洲精品 | 国产av剧情md精品麻豆 | 免费无码一区二区三区蜜桃大 | 十八禁真人啪啪免费网站 | 国产精品对白交换视频 | 日韩无码专区 | 国产女主播喷水视频在线观看 | 欧美变态另类xxxx | 少妇性l交大片 | 久久久中文字幕日本无吗 | 中文字幕乱码亚洲无线三区 | 亚洲精品午夜国产va久久成人 | 国产成人无码av在线影院 | 久久熟妇人妻午夜寂寞影院 | 色综合久久久无码中文字幕 | 亚洲精品一区二区三区在线观看 | 亚洲国产精品久久久久久 | 日本一本二本三区免费 | 奇米影视7777久久精品 | 人妻aⅴ无码一区二区三区 | 久久久久se色偷偷亚洲精品av | 久久精品国产一区二区三区肥胖 | 久久久久人妻一区精品色欧美 | 国产黄在线观看免费观看不卡 | 国内揄拍国内精品少妇国语 | 国产精品-区区久久久狼 | 免费网站看v片在线18禁无码 | 国产亚洲日韩欧美另类第八页 | 欧美人与动性行为视频 | 日本一区二区更新不卡 | 骚片av蜜桃精品一区 | 国产激情一区二区三区 | 国产av无码专区亚洲a∨毛片 | 日韩精品久久久肉伦网站 | 欧美真人作爱免费视频 | 欧美成人免费全部网站 | 99在线 | 亚洲 | 亚洲の无码国产の无码影院 | 大胆欧美熟妇xx | 国产又爽又猛又粗的视频a片 | 白嫩日本少妇做爰 | 亚洲欧洲日本无在线码 | 日韩视频 中文字幕 视频一区 | 亚洲一区二区三区国产精华液 | 欧美熟妇另类久久久久久不卡 | 少妇人妻偷人精品无码视频 | 国产精品久久久久9999小说 | 久久久久国色av免费观看性色 | 在线播放亚洲第一字幕 | 欧美精品无码一区二区三区 | 天堂久久天堂av色综合 | av香港经典三级级 在线 | 夜夜夜高潮夜夜爽夜夜爰爰 | 久久久中文字幕日本无吗 | 精品人妻人人做人人爽 | 久久 国产 尿 小便 嘘嘘 | 亚洲综合另类小说色区 | 国产亚洲精品久久久久久久久动漫 | 黑人玩弄人妻中文在线 | 色情久久久av熟女人妻网站 | 国产疯狂伦交大片 | 国产成人无码午夜视频在线观看 | 黑人巨大精品欧美黑寡妇 | 熟妇人妻无乱码中文字幕 | 欧洲vodafone精品性 | 全黄性性激高免费视频 | 国产成人精品优优av | 久久精品中文字幕大胸 | 人人妻人人澡人人爽欧美一区 | 熟女少妇人妻中文字幕 | 欧美日韩色另类综合 | 兔费看少妇性l交大片免费 | 影音先锋中文字幕无码 | 国产精品久久久久久亚洲影视内衣 | 国产精品久免费的黄网站 | 天堂а√在线地址中文在线 | 十八禁真人啪啪免费网站 | 亚洲精品无码国产 | 精品久久久久久亚洲精品 | 亚洲精品鲁一鲁一区二区三区 | 呦交小u女精品视频 | 国产av无码专区亚洲awww | 国产人妻精品一区二区三区 | 丁香花在线影院观看在线播放 | 中文无码精品a∨在线观看不卡 | 人妻少妇精品视频专区 | 97夜夜澡人人双人人人喊 | 亚洲色www成人永久网址 | 久久97精品久久久久久久不卡 | 国产精品亚洲一区二区三区喷水 | 欧美性生交xxxxx久久久 | 真人与拘做受免费视频 | 精品无码成人片一区二区98 | 97色伦图片97综合影院 | 免费观看黄网站 | 性欧美熟妇videofreesex | 国产精品美女久久久 | 荫蒂被男人添的好舒服爽免费视频 | 久久午夜夜伦鲁鲁片无码免费 | 欧美野外疯狂做受xxxx高潮 | 国产亚洲精品久久久ai换 | 中文字幕 亚洲精品 第1页 | 精品熟女少妇av免费观看 | 我要看www免费看插插视频 | 国产午夜视频在线观看 | 未满小14洗澡无码视频网站 | 午夜理论片yy44880影院 | 国产午夜视频在线观看 | 鲁一鲁av2019在线 | 欧美精品一区二区精品久久 | 中文字幕无码视频专区 | 国产av一区二区精品久久凹凸 | 欧美日本日韩 | 国内综合精品午夜久久资源 | 老熟妇仑乱视频一区二区 | 青青青爽视频在线观看 | 樱花草在线社区www | 久久国产36精品色熟妇 | 国产婷婷色一区二区三区在线 | 日本一区二区三区免费高清 | 午夜丰满少妇性开放视频 | 成人免费无码大片a毛片 | 亚洲国产综合无码一区 | 青青青爽视频在线观看 | 国产精品爱久久久久久久 | 欧美一区二区三区视频在线观看 | 欧美日韩视频无码一区二区三 | 无遮无挡爽爽免费视频 | 亚洲国产综合无码一区 | 超碰97人人做人人爱少妇 | 最新版天堂资源中文官网 | 午夜福利一区二区三区在线观看 | 麻豆国产97在线 | 欧洲 | 俄罗斯老熟妇色xxxx | 亚洲男女内射在线播放 | 亚洲日韩av一区二区三区四区 | ass日本丰满熟妇pics | 亚洲欧美国产精品专区久久 | 国产国语老龄妇女a片 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 久久zyz资源站无码中文动漫 | 色综合久久88色综合天天 | 乱中年女人伦av三区 | 国产麻豆精品一区二区三区v视界 | 国产综合色产在线精品 | 欧美阿v高清资源不卡在线播放 | 日韩少妇内射免费播放 | 欧美日韩精品 | 久久99精品国产.久久久久 | 亚洲人成无码网www | 日本精品人妻无码77777 天堂一区人妻无码 | 狂野欧美性猛xxxx乱大交 | 精品一区二区三区无码免费视频 | 爱做久久久久久 | 婷婷五月综合激情中文字幕 | 色一情一乱一伦一区二区三欧美 | 熟妇激情内射com | 日本精品高清一区二区 | 秋霞成人午夜鲁丝一区二区三区 | 精品国产av色一区二区深夜久久 | 亚洲成a人片在线观看无码 | 无套内谢的新婚少妇国语播放 | 国产亚洲人成a在线v网站 | 无码av免费一区二区三区试看 | 国产suv精品一区二区五 | 无遮无挡爽爽免费视频 | 国产成人精品一区二区在线小狼 | 亚洲成色在线综合网站 | 一本色道久久综合亚洲精品不卡 | 沈阳熟女露脸对白视频 | 日本又色又爽又黄的a片18禁 | 精品久久久久久亚洲精品 | 日本护士xxxxhd少妇 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 国语自产偷拍精品视频偷 | 国产精品久久久午夜夜伦鲁鲁 | 成年美女黄网站色大免费视频 | 乱码午夜-极国产极内射 | 妺妺窝人体色www婷婷 | 国产精品久久久 | 国产片av国语在线观看 | 图片小说视频一区二区 | 黑人玩弄人妻中文在线 | 国产午夜视频在线观看 | 亚洲欧美精品伊人久久 | 小sao货水好多真紧h无码视频 | 国产极品美女高潮无套在线观看 | 亚洲色在线无码国产精品不卡 | 99久久精品午夜一区二区 | 国产人妻人伦精品 | 国产精品人人妻人人爽 | 亚洲国产精品无码一区二区三区 | 精品国偷自产在线视频 | 俺去俺来也在线www色官网 | 毛片内射-百度 | 色窝窝无码一区二区三区色欲 | 国産精品久久久久久久 | 日本熟妇乱子伦xxxx | 在线天堂新版最新版在线8 | 亚洲自偷自偷在线制服 | 西西人体www44rt大胆高清 | 久久久久久av无码免费看大片 | 国产亚av手机在线观看 | 精品国产精品久久一区免费式 | 无码人妻黑人中文字幕 | 熟女少妇人妻中文字幕 | 四虎影视成人永久免费观看视频 | 亚洲中文字幕乱码av波多ji | 两性色午夜视频免费播放 | 粗大的内捧猛烈进出视频 | 中文字幕精品av一区二区五区 | 色一情一乱一伦一视频免费看 | 天干天干啦夜天干天2017 | 亚洲中文字幕久久无码 | 亚洲啪av永久无码精品放毛片 | 婷婷色婷婷开心五月四房播播 | 性史性农村dvd毛片 | 国产两女互慰高潮视频在线观看 | 搡女人真爽免费视频大全 | 亚洲一区二区三区在线观看网站 | 久久精品国产大片免费观看 | 午夜福利试看120秒体验区 | 婷婷丁香六月激情综合啪 | 东京热无码av男人的天堂 | 久久久久久久久蜜桃 | 人人妻人人澡人人爽人人精品浪潮 | 成人性做爰aaa片免费看不忠 | 亚洲精品国产精品乱码不卡 | 成人精品视频一区二区 | 久久国产精品二国产精品 | 成人aaa片一区国产精品 | 欧美肥老太牲交大战 | 亚洲中文字幕在线无码一区二区 | 欧美日韩一区二区综合 | 一本加勒比波多野结衣 | 国产精品高潮呻吟av久久4虎 | 国产av一区二区精品久久凹凸 | 无码精品人妻一区二区三区av | www国产精品内射老师 | 一本色道久久综合亚洲精品不卡 | 亚洲乱码日产精品bd | 狠狠色丁香久久婷婷综合五月 | 老太婆性杂交欧美肥老太 | 少妇被粗大的猛进出69影院 | 久久人人爽人人爽人人片av高清 | 97夜夜澡人人双人人人喊 | 高清不卡一区二区三区 | 狂野欧美性猛交免费视频 | 六月丁香婷婷色狠狠久久 | 欧美性色19p | 亚洲爆乳精品无码一区二区三区 | 亚洲 a v无 码免 费 成 人 a v | 美女毛片一区二区三区四区 | 成人av无码一区二区三区 | 日本一区二区三区免费高清 | 激情内射亚州一区二区三区爱妻 | 国产9 9在线 | 中文 | 丰满人妻一区二区三区免费视频 | 亚洲午夜无码久久 | 18无码粉嫩小泬无套在线观看 | 台湾无码一区二区 | 国产精品国产三级国产专播 | 精品国产福利一区二区 | 国产高清av在线播放 | 免费人成在线视频无码 | 国内少妇偷人精品视频免费 | 装睡被陌生人摸出水好爽 | 99久久人妻精品免费一区 | 精品一区二区不卡无码av | 人妻天天爽夜夜爽一区二区 | 性做久久久久久久免费看 | 国产在热线精品视频 | 久久亚洲日韩精品一区二区三区 | 国产乱人偷精品人妻a片 | 国产精品a成v人在线播放 | 国产精品久久国产精品99 | 熟妇人妻中文av无码 | 国产va免费精品观看 | 在线天堂新版最新版在线8 | 国产成人午夜福利在线播放 | 东京热男人av天堂 | 久久精品国产日本波多野结衣 | 乌克兰少妇xxxx做受 | 领导边摸边吃奶边做爽在线观看 | 爱做久久久久久 | 亚洲 a v无 码免 费 成 人 a v | 国产乡下妇女做爰 | 伊人久久大香线蕉av一区二区 | 极品嫩模高潮叫床 | 国产精品国产三级国产专播 | 99久久婷婷国产综合精品青草免费 | 国产在线一区二区三区四区五区 | 国产97人人超碰caoprom | 亚洲无人区一区二区三区 | 永久黄网站色视频免费直播 | 亚洲国产精品无码久久久久高潮 | 99精品无人区乱码1区2区3区 | 国产精品香蕉在线观看 | 亚洲人成网站免费播放 | 色窝窝无码一区二区三区色欲 | 99久久久无码国产aaa精品 | 一本一道久久综合久久 | 日本高清一区免费中文视频 | 色综合久久久久综合一本到桃花网 | 亚洲毛片av日韩av无码 | 色一情一乱一伦一视频免费看 | 日本熟妇乱子伦xxxx | 牲欲强的熟妇农村老妇女视频 | 日韩av无码一区二区三区 | 97se亚洲精品一区 | 久久精品中文字幕一区 | 成在人线av无码免费 | 久久亚洲a片com人成 | 国产成人精品久久亚洲高清不卡 | 久久亚洲日韩精品一区二区三区 | 亚洲娇小与黑人巨大交 | 欧美大屁股xxxxhd黑色 | 少妇无码av无码专区在线观看 | 大地资源中文第3页 | 国产精品亚洲专区无码不卡 | 天堂无码人妻精品一区二区三区 | 国产偷国产偷精品高清尤物 | 少妇人妻大乳在线视频 | 少妇太爽了在线观看 | 人妻少妇被猛烈进入中文字幕 | 日本精品久久久久中文字幕 | 狂野欧美性猛交免费视频 | 精品亚洲成av人在线观看 | 久久久精品456亚洲影院 | 色综合久久久久综合一本到桃花网 | 亚洲小说春色综合另类 | 性开放的女人aaa片 | 色综合久久久无码中文字幕 | 国产免费观看黄av片 | 欧美日韩一区二区免费视频 | 精品乱子伦一区二区三区 | 亚洲成a人片在线观看日本 | 亚洲国产精品无码一区二区三区 | 正在播放东北夫妻内射 | 国产精品人妻一区二区三区四 | 影音先锋中文字幕无码 | 久久这里只有精品视频9 | 内射巨臀欧美在线视频 | 永久免费观看美女裸体的网站 | 精品久久久无码中文字幕 | 亚洲中文字幕无码一久久区 | 少妇人妻av毛片在线看 | 精品欧洲av无码一区二区三区 | 亚洲色欲久久久综合网东京热 | 免费乱码人妻系列无码专区 | 波多野结衣一区二区三区av免费 | 中文字幕无码日韩欧毛 | 曰本女人与公拘交酡免费视频 | 国产色精品久久人妻 | 国产精品国产自线拍免费软件 | 内射白嫩少妇超碰 | 国内丰满熟女出轨videos | 麻豆成人精品国产免费 | 国产精品高潮呻吟av久久4虎 | 亚洲狠狠色丁香婷婷综合 | 久久人妻内射无码一区三区 | 男人的天堂2018无码 | 国产网红无码精品视频 | 亚洲国产成人av在线观看 | 无码人妻精品一区二区三区下载 | 亚洲无人区一区二区三区 | 久青草影院在线观看国产 | 久精品国产欧美亚洲色aⅴ大片 | 任你躁在线精品免费 | 久久精品国产精品国产精品污 | 好男人www社区 | 国产精品久久久久9999小说 | 波多野结衣av在线观看 | 亚洲伊人久久精品影院 | 国精产品一区二区三区 | 日本精品人妻无码免费大全 | 欧美野外疯狂做受xxxx高潮 | 99久久精品无码一区二区毛片 | 一本久道久久综合狠狠爱 | 欧美国产亚洲日韩在线二区 | 一本久道久久综合狠狠爱 | 任你躁国产自任一区二区三区 | 99久久久国产精品无码免费 | 亚洲理论电影在线观看 | 精品水蜜桃久久久久久久 | 亚洲精品一区二区三区在线 | 国产免费久久久久久无码 | 亚洲综合在线一区二区三区 | 中文字幕无码日韩专区 | 国産精品久久久久久久 | 婷婷六月久久综合丁香 | 国产超碰人人爽人人做人人添 | 久精品国产欧美亚洲色aⅴ大片 | 曰本女人与公拘交酡免费视频 | 国产av剧情md精品麻豆 | 狠狠噜狠狠狠狠丁香五月 | 一本久久伊人热热精品中文字幕 | 中文无码精品a∨在线观看不卡 | 无码人中文字幕 | 漂亮人妻洗澡被公强 日日躁 | 在线 国产 欧美 亚洲 天堂 | 久久熟妇人妻午夜寂寞影院 | 俺去俺来也www色官网 | 中文字幕日韩精品一区二区三区 | 午夜精品久久久久久久久 | 波多野结衣高清一区二区三区 | www国产精品内射老师 | 牲欲强的熟妇农村老妇女视频 | 特大黑人娇小亚洲女 | 国产精品久久久久影院嫩草 | 成人片黄网站色大片免费观看 | 久久精品中文字幕大胸 | 一本大道久久东京热无码av | 亚洲日本va午夜在线电影 | 欧美性生交xxxxx久久久 | 激情国产av做激情国产爱 | 欧美 日韩 人妻 高清 中文 | 欧美老熟妇乱xxxxx | 欧美猛少妇色xxxxx | 国产乱人偷精品人妻a片 | 俺去俺来也在线www色官网 | 久久亚洲a片com人成 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 国产精品igao视频网 | 国产成人综合在线女婷五月99播放 | 在线a亚洲视频播放在线观看 | 日本护士毛茸茸高潮 | 欧美人与善在线com | 精品人妻人人做人人爽夜夜爽 | 女人和拘做爰正片视频 | 中文字幕乱码中文乱码51精品 | 国产亚洲精品久久久久久大师 | 精品无码国产自产拍在线观看蜜 | 色诱久久久久综合网ywww | 狠狠色欧美亚洲狠狠色www | 国产亲子乱弄免费视频 | 人妻无码αv中文字幕久久琪琪布 | 国产成人av免费观看 | 无码人妻丰满熟妇区毛片18 | 丁香啪啪综合成人亚洲 | 色狠狠av一区二区三区 | 97精品人妻一区二区三区香蕉 | 国产xxx69麻豆国语对白 | 男女猛烈xx00免费视频试看 | 国产亲子乱弄免费视频 | 日日摸日日碰夜夜爽av | 六十路熟妇乱子伦 | 无码成人精品区在线观看 | 国产精品无码永久免费888 | 国产成人无码av片在线观看不卡 | 国产亚洲日韩欧美另类第八页 | 精品欧美一区二区三区久久久 | 国产在线无码精品电影网 | 精品一区二区三区波多野结衣 | 夜精品a片一区二区三区无码白浆 | 大肉大捧一进一出视频出来呀 | 人人妻人人澡人人爽人人精品 | 理论片87福利理论电影 | 色婷婷久久一区二区三区麻豆 | 久久99久久99精品中文字幕 | 亚洲色欲色欲天天天www | 欧美人妻一区二区三区 | 97夜夜澡人人爽人人喊中国片 | 狠狠色丁香久久婷婷综合五月 | 波多野结衣乳巨码无在线观看 | 亚洲 另类 在线 欧美 制服 | 精品乱码久久久久久久 | 一本一道久久综合久久 | 丰满人妻翻云覆雨呻吟视频 | 亚洲色大成网站www | 久久久久人妻一区精品色欧美 | 又粗又大又硬又长又爽 | 天天躁夜夜躁狠狠是什么心态 | 久久熟妇人妻午夜寂寞影院 | 欧美xxxxx精品 | 久久久久亚洲精品中文字幕 | 人妻无码αv中文字幕久久琪琪布 | 亚洲精品综合一区二区三区在线 | 乱码午夜-极国产极内射 | 色狠狠av一区二区三区 | 激情内射亚州一区二区三区爱妻 | 亚洲经典千人经典日产 | 久久午夜无码鲁丝片秋霞 | 红桃av一区二区三区在线无码av | 亚洲欧美精品aaaaaa片 | 日本一区二区三区免费高清 | 亚洲爆乳精品无码一区二区三区 | 少妇人妻av毛片在线看 | 国内揄拍国内精品少妇国语 | 四虎永久在线精品免费网址 | 免费视频欧美无人区码 | 国产区女主播在线观看 | 麻豆国产人妻欲求不满 | 亚洲国产av精品一区二区蜜芽 | 欧美熟妇另类久久久久久多毛 | 自拍偷自拍亚洲精品10p | 中文字幕中文有码在线 | 国内综合精品午夜久久资源 | 永久免费精品精品永久-夜色 | 亚洲经典千人经典日产 | 狂野欧美性猛交免费视频 | 久久97精品久久久久久久不卡 | 亚洲欧美日韩综合久久久 | 久久天天躁夜夜躁狠狠 | 久久精品国产大片免费观看 | 亚洲欧美日韩国产精品一区二区 | 人妻少妇精品视频专区 | 精品人人妻人人澡人人爽人人 | 日本精品人妻无码免费大全 | 久久综合给久久狠狠97色 | 久久久精品成人免费观看 | 4hu四虎永久在线观看 | 九一九色国产 | 国产成人无码av片在线观看不卡 | 初尝人妻少妇中文字幕 | 欧美怡红院免费全部视频 | 亚洲人成影院在线观看 | 国产精品美女久久久网av | 精品国产av色一区二区深夜久久 | 亚洲熟女一区二区三区 | 国产凸凹视频一区二区 | 装睡被陌生人摸出水好爽 | 少妇性俱乐部纵欲狂欢电影 | 亚洲日韩av片在线观看 | 国产精品无码成人午夜电影 | 男女作爱免费网站 | 少妇人妻av毛片在线看 | 成人免费视频在线观看 | 国产人成高清在线视频99最全资源 | 日本丰满熟妇videos | 国产免费观看黄av片 | 久久久久久a亚洲欧洲av冫 | 日本欧美一区二区三区乱码 | 国产九九九九九九九a片 | 日本肉体xxxx裸交 | 装睡被陌生人摸出水好爽 | 国产午夜无码精品免费看 | 天堂久久天堂av色综合 | 久激情内射婷内射蜜桃人妖 | 国产精品.xx视频.xxtv | 亚洲熟妇色xxxxx欧美老妇 | 国产高清不卡无码视频 | 东北女人啪啪对白 | 中文字幕无码av波多野吉衣 | 欧美日韩一区二区三区自拍 | 日本肉体xxxx裸交 | 亚洲人交乣女bbw | 在教室伦流澡到高潮hnp视频 | 色综合天天综合狠狠爱 | 亚洲欧美日韩综合久久久 | 久久综合九色综合97网 | 亚洲精品一区三区三区在线观看 | 狠狠色色综合网站 | 欧美日韩久久久精品a片 | 亚洲大尺度无码无码专区 | 久久精品国产99久久6动漫 | 日本护士毛茸茸高潮 | 亚洲欧美精品伊人久久 | 久久天天躁狠狠躁夜夜免费观看 | 99久久99久久免费精品蜜桃 | 国产一区二区三区精品视频 | 99久久精品午夜一区二区 | 亚洲国产精品久久久天堂 | 久久久久久九九精品久 | 国产香蕉尹人视频在线 | 无码av最新清无码专区吞精 | 午夜精品一区二区三区的区别 | 日本一本二本三区免费 | 精品欧洲av无码一区二区三区 | 国产精品爱久久久久久久 | 欧美日韩精品 | 色五月五月丁香亚洲综合网 | 欧美35页视频在线观看 | 国产无遮挡吃胸膜奶免费看 | 日本丰满护士爆乳xxxx | 亚洲人成影院在线观看 | 欧美自拍另类欧美综合图片区 | 成人一区二区免费视频 | 任你躁国产自任一区二区三区 | 免费无码肉片在线观看 | 免费无码肉片在线观看 | 亚洲 另类 在线 欧美 制服 | 中文字幕日韩精品一区二区三区 | 老司机亚洲精品影院 | 久久综合给合久久狠狠狠97色 | 少妇一晚三次一区二区三区 | 无遮挡啪啪摇乳动态图 | 久久无码中文字幕免费影院蜜桃 | 一个人看的www免费视频在线观看 | 久久精品中文字幕大胸 | 国产精品久久久久久亚洲影视内衣 | 毛片内射-百度 | 人妻插b视频一区二区三区 | 麻豆果冻传媒2021精品传媒一区下载 | 一区二区三区乱码在线 | 欧洲 | 国产 精品 自在自线 | 亚洲国产欧美在线成人 | 正在播放老肥熟妇露脸 | 成 人 网 站国产免费观看 | 久久婷婷五月综合色国产香蕉 | 99精品视频在线观看免费 | 少妇厨房愉情理9仑片视频 | 亚洲热妇无码av在线播放 | 国产美女精品一区二区三区 | 国产精品丝袜黑色高跟鞋 | 国产成人综合在线女婷五月99播放 | 国产色xx群视频射精 | 蜜桃视频韩日免费播放 | 自拍偷自拍亚洲精品被多人伦好爽 | 精品偷拍一区二区三区在线看 | 国产尤物精品视频 | 色欲综合久久中文字幕网 | 黑人玩弄人妻中文在线 | 搡女人真爽免费视频大全 | 奇米影视7777久久精品人人爽 | 少妇厨房愉情理9仑片视频 | 午夜无码人妻av大片色欲 | 久久99久久99精品中文字幕 | av在线亚洲欧洲日产一区二区 | 青春草在线视频免费观看 | 日本一本二本三区免费 | 日本丰满熟妇videos | 色综合视频一区二区三区 | 精品厕所偷拍各类美女tp嘘嘘 | 成人av无码一区二区三区 | 999久久久国产精品消防器材 | 国产av人人夜夜澡人人爽麻豆 | 国产艳妇av在线观看果冻传媒 | 精品亚洲韩国一区二区三区 | 无码国产色欲xxxxx视频 | 免费无码肉片在线观看 | 亚洲国产精品一区二区美利坚 | 一本久道久久综合狠狠爱 | 在线观看国产一区二区三区 | 天下第一社区视频www日本 | 东北女人啪啪对白 | 国产在线aaa片一区二区99 | 国产9 9在线 | 中文 | 熟女少妇在线视频播放 | 沈阳熟女露脸对白视频 | 日本丰满护士爆乳xxxx | 思思久久99热只有频精品66 | 欧美亚洲国产一区二区三区 | 亚洲一区二区三区国产精华液 | 又大又硬又黄的免费视频 | 天堂亚洲2017在线观看 | 欧美黑人巨大xxxxx | 九月婷婷人人澡人人添人人爽 | 国产欧美精品一区二区三区 | 成人片黄网站色大片免费观看 | 夜夜影院未满十八勿进 | 国内老熟妇对白xxxxhd | 日本www一道久久久免费榴莲 | 国产精品理论片在线观看 | 少妇性荡欲午夜性开放视频剧场 | 国产av一区二区精品久久凹凸 | 国产国语老龄妇女a片 | 成人免费视频在线观看 | 九九久久精品国产免费看小说 | 少女韩国电视剧在线观看完整 | 亚洲色欲色欲天天天www | 国产欧美熟妇另类久久久 | 熟妇激情内射com | 丝袜人妻一区二区三区 | 人妻互换免费中文字幕 | 国产精品丝袜黑色高跟鞋 | 欧美 亚洲 国产 另类 | 丝袜人妻一区二区三区 | 亚洲男人av天堂午夜在 | 欧美猛少妇色xxxxx | 国产精品美女久久久网av | 午夜福利不卡在线视频 | 国产精品久久久久7777 | 东北女人啪啪对白 | 久久久久久国产精品无码下载 | 六月丁香婷婷色狠狠久久 | 国产 浪潮av性色四虎 | 99久久精品日本一区二区免费 | 欧美大屁股xxxxhd黑色 | 国产精品无码一区二区三区不卡 | 午夜时刻免费入口 | 国产农村乱对白刺激视频 | 一二三四社区在线中文视频 | 久久久中文久久久无码 | 欧美刺激性大交 | 最近免费中文字幕中文高清百度 | 国产在线无码精品电影网 | 一本久久a久久精品亚洲 | 国产午夜无码视频在线观看 | 国产免费久久精品国产传媒 | 久久人人爽人人爽人人片ⅴ | 国产成人av免费观看 | 天天摸天天碰天天添 | 一二三四在线观看免费视频 | 久久精品中文字幕一区 | 少妇一晚三次一区二区三区 | 日韩精品久久久肉伦网站 | 亚洲一区二区三区偷拍女厕 | 在线观看免费人成视频 | 久久综合狠狠综合久久综合88 | 久久国产自偷自偷免费一区调 | 东京一本一道一二三区 | 国产乱人伦av在线无码 | 亚洲理论电影在线观看 | 国产av久久久久精东av | 久久国产自偷自偷免费一区调 | 国产一区二区三区精品视频 |