Jump to content

OP

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 182.78.161.2 (talk) at 09:35, 10 September 2024. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

OP or Op may refer to:

Arts and entertainment

  • One Piece, a 1997 Japanese manga and anime
  • OP, an abbreviated term for opening theme songs in anime
  • Opposite prompt, a stage right prompt corner on a theatre stage
  • Optimus Prime, a character from the Transformers franchise
  • Op., short for opus number, used to denote one work of musical composition from many
  • Original pronunciation, the phonology of Early Modern English, as used in William Shakespeare's time, specifically when used to perform his works in modern times.
  • Out of print, a status of a book title at a publishing house

Businesses and organizations

Internet

  • Original post (or poster), the opening entry (or author thereof) in a thread or discussion in an internet forum
  • Overpowered (game balance), in video games, when a particular aspect or character is lacking game balance

Mathematics and computers

Places

Other uses

See also

list1 = [1,3,5,7,9] list2 = [2,4,6,8,10] list3 = ["red", "green", "blue"] print(min(list1)) print(max(list2)) print(sum(list1+list2)) g5 = [x for x in list1 if x>5] print(g5) list4 = list1+list2 print(list4) list1.insert(3, 11) print(list1) list2.pop(1) print(list2)