Python function question

Asked 2 years ago, Updated 2 years ago, 17 views

.

How do I substitute the two parameters I received from account_info with the log_in function??

python

2022-09-22 19:56

1 Answers

When calling log_in as shown below, unpack the returned tuple with the * operator.

log_in(*account_info())


2022-09-22 19:56

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.