How To Assign Multiple Variables in The One Line/Same Line in Python Programming Language

 How To Assign Multiple Variables in the Same Line in Python :


Code :a,b,c = True,25,"String"

print(a)
print(b)
print(c)

Output :

Comments

Popular posts from this blog

Write a Python Program To Calculate The Grade Of A Student

Write Python Program To Store Seven Fruits Name In a List Enter By The User