Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 731 Bytes

File metadata and controls

46 lines (37 loc) · 731 Bytes

python__study

"Reserved words" are:

  • 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

Functions:

  • print()

  • int()

  • float()

  • str()

  • min()

  • max()

  • pow()

  • round()

  • open()

  • input()

  • sum()

  • dict()

  • type()

  • .join()

  • .split()

  • .upper()

  • .lower()

  • .title()

  • .find()

  • .replace()

  • .get()

  • .append()

  • .insert()

  • .pop()

  • .index()

  • .count()

  • .sort()