From abf72d39aafbca640d4ab0708fe0ddf32c2489f7 Mon Sep 17 00:00:00 2001 From: ptvlk6bi2 <2584981545@qq.com> Date: Sat, 9 Jul 2022 11:38:51 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CarPath.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CarPath.py diff --git a/CarPath.py b/CarPath.py new file mode 100644 index 0000000..9382e19 --- /dev/null +++ b/CarPath.py @@ -0,0 +1,11 @@ +#!/usr/bin/python +# -*- coding: UTF-8 -*- + +class CarPath: + def __init__(self, argv4): + self.path = int(argv4[0]) + self.id = int(argv4[1]) + self.time_stage = int(argv4[2]) + + +