How to declare two variables in one line? (Select two options)
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'