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 Check student is Pass or Fail In Exam

Building a Face Recognition Attendance System with Python