ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
NameTuesday (Workshop / Session)Thursday (Conference / Session)
2
PatCPS-IoTBench / Triscale TutorialIPSN / Session 2 (Location)
3
GabeMSCPESIoTDI / Session 4 (Edge)
4
LivDESTION / Session 1RTAS / Session 4 (ML)
5
JohnMedical CPS IoTICCPS / Session 2 (Autonomous Systems)
6
HelenCHPS'21 / Session 3ICCPS / Session 5 (Security/Privacy)
7
BiliCPS-IoTBench / Session 2RTAS / Session 1 (Secure and Safe OS)
8
AlexCPS-IoTBench / Session 1IPSN / Session 3 (Monitoring)
9
Jen
ICCPS / Session 1 (Smart and Connected Cities)
10
DhananjayMT-CPS 2021IPSN/Session 3(Monitoring)
11
ColinMedical CPT IoTIoTDI/ Session 4 (User Interaction)
12
XiaohanCPHS'21 / Session 2IOTDI / Session 2 (Privacy)
13
yeswanthCPS-IoTBench / Session 2IPSN/Session 3(Monitoring)
14
RaghavCPS-IoTBenchIPSN/Session 1 (Wireless+Location)
15
ShantiIPSN/Session 6(Security)
16
17
>>> a = ['Pat', 'Gabe', 'Liv', 'John', 'Helen', 'Bili', 'Alex', 'Jen', 'Dhananjay', 'Colin', 'Xiaohan', 'yeswanth', 'Raghav',
18
... ]
19
>>> random.shuffle(a)
20
>>> a
21
['Colin', 'John', 'Gabe', 'yeswanth', 'Raghav', 'Alex', 'Liv', 'Helen', 'Jen', 'Dhananjay', 'Bili', 'Xiaohan', 'Pat']
22
>>> random.shuffle(a)
23
>>> a
24
['Alex', 'Gabe', 'Shanti', 'Helen', 'Dhananjay', 'yeswanth', 'Jen', 'Raghav', 'John', 'Colin', 'Liv', 'Xiaohan', 'Bili']
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100