首页 > 代码库 > Python Symbol

Python Symbol

Keywords

Data Types

String Escape Sequences

String Formats

Operators

• and

• del

• from

• not

• while

• as

• elif

• global

• or

• with

• assert

• else

• if

• pass

• yield

• break

• except

• import

• print

• class

• exec

• in

• raise

• continue

• finally

• is

• return

• def

• for

• lambda

• try

• True

• False

• None

• strings

• numbers

• floats

• lists

• \\

• \‘

• \"

• \a

• \b

• \f

• \n

• \r

• \t

• \v

• %d

• %i

• %o

• %u

• %x

• %X

• %e

• %E

• %f

• %F

• %g

• %G

• +

• -

• *

• **

• /

• //

• %

• <

• >

• <=

• >=

• ==

• !=

• <>

• ( )

• [ ]

• { }

• @

• ,

• :

• .

• =

• ;

• +=

• - =

• *=

• /=

• //=

• %=

• **=

 

How would I search for these things online?

Simply put "python" before anything you want to find. For example, to find yield do python yield.

 

Reference:

Book learn python the hard way EXERCISE 37 Symbol Review

Python Symbol