How to declare two variables in one line? (Select two options)

Questions & AnswersCategory: PythonHow to declare two variables in one line? (Select two options)
Geek Boy Staff asked 2 years ago

How to declare two variables in one line? (Select two options)

a. tech_name = 'Python': version = '3.9.0'

b. tech_name = 'Python', version = '3.9.0'

c. tech_name, version = 'Python', '3.9.0'

d. tech_name = 'Python'; version = '3.9.0'