Saturday, 6 January 2018

Multiple Assignment in python3

pno, pname, price = 101, "LUX", 500.50
print(pno)
print(pname)
print(price)
 

No comments:

Post a Comment

Lists

Python  Lists Python Collections (Arrays) There are four collection data types in the Python programming language: List  is a ...