can i use rust's match in python? [closed]
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 1 year ago . Improve this question i want to use rust match in python3, instead of if...elif statement. https://doc.rust-lang.org/rust-by-example/flow_control/match.html fn main() { let number = 13; // TODO ^ Try different values for `number` println!("Tell me about {}", number); match number { //