Jump to content

JP: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Tags: Mobile edit Mobile web edit
No edit summary
Tag: Reverted
Line 40: Line 40:


==Science and technology==
==Science and technology==
* list1=["red","green","blue"]
* [[.jp]], the Internet country-code top-level domain for Japan
print(len(list1))
* [[Jackson-Pratt drain]], a surgical drain
l1=[1,2,3]
* Military prefix for jet propellant fuels such as [[JP-4]], [[JP-7]], [[JP-8]]
print(type(l1))
* "JP", Formula 3 cars built by [[Joe Potts]]
list1=["red","green","blue"]
* [[Julian Period]]
list1.append("yellow")
print(list1)
lst1=["red","blue"]
lst1.clear()
print(lst1)
lst1=["red","green"]
lst2=lst1.copy()
print(lst2)
lst1=["red","blue","gren"]
lst2=["yellow","pink"]
lst1.extend(lst2)
print(lst1)
lst1=["red","blue","gren"]
print(lst1.index("blue"))
lst1=["red","green","blue","red"]
print(lst1.count("red"))
lst1=["red","green","blue"]
lst1.reverse()
print(lst1)
list1=["red","green","blue"]
list1.sort()
print(list1)
list1=["red","green","blue"]
list1.sort(reverse=1)
print(list1)
lst1=["red","green","blue","Yellow"]
lst1.sort(key = lst1.lower())
print(lst1)


==Other uses==
==Other uses==

Revision as of 08:37, 4 September 2024

JP may refer to:

Arts and media

People

Places

Political parties

Science and technology

  • list1=["red","green","blue"]

print(len(list1)) l1=[1,2,3] print(type(l1)) list1=["red","green","blue"] list1.append("yellow") print(list1) lst1=["red","blue"] lst1.clear() print(lst1) lst1=["red","green"] lst2=lst1.copy() print(lst2) lst1=["red","blue","gren"] lst2=["yellow","pink"] lst1.extend(lst2) print(lst1) lst1=["red","blue","gren"] print(lst1.index("blue")) lst1=["red","green","blue","red"] print(lst1.count("red")) lst1=["red","green","blue"] lst1.reverse() print(lst1) list1=["red","green","blue"] list1.sort() print(list1) list1=["red","green","blue"] list1.sort(reverse=1) print(list1) lst1=["red","green","blue","Yellow"] lst1.sort(key = lst1.lower()) print(lst1)

Other uses

See also