I'm attempting to extract the Date Taken from jpgs within a directory. And then I want to have the date printed as such: mo/day/year
Here's an example of a JPG's Properties menu:

This code runs with no error but the output isn't what I want.
<SPAN class="keyword token">import</SPAN> exifread
<SPAN class="keyword token">from</SPAN> exifread <SPAN class="keyword token">import</SPAN> exif
<SPAN class="keyword token">import</SPAN> os
<SPAN class="keyword token">import</SPAN> time
im <SPAN class="operator token">=</SPAN> r<SPAN class="string token">"path\to\DOT_SignInventory"</SPAN>
<SPAN class="keyword token">for</SPAN> root<SPAN class="punctuation token">,</SPAN> dirnames<SPAN class="punctuation token">,</SPAN> filenames <SPAN class="keyword token">in</SPAN> os<SPAN class="punctuation token">.</SPAN>walk<SPAN class="punctuation token">(</SPAN>im<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">:</SPAN>
<SPAN class="keyword token">for</SPAN> fname <SPAN class="keyword token">in</SPAN> filenames<SPAN class="punctuation token">:</SPAN>
<SPAN class="keyword token">if</SPAN> fname<SPAN class="punctuation token">.</SPAN>endswith<SPAN class="punctuation token">(</SPAN><SPAN class="string token">'.JPG'</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">:</SPAN>
<SPAN class="keyword token">with</SPAN> open<SPAN class="punctuation token">(</SPAN>os<SPAN class="punctuation token">.</SPAN>path<SPAN class="punctuation token">.</SPAN>join<SPAN class="punctuation token">(</SPAN>root<SPAN class="punctuation token">,</SPAN> fname<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">,</SPAN> <SPAN class="string token">'rb'</SPAN><SPAN class="punctuation token">)</SPAN> <SPAN class="keyword token">as</SPAN> image<SPAN class="punctuation token">:</SPAN> <SPAN class="comment token">#file path and name</SPAN>
exif <SPAN class="operator token">=</SPAN> exifread<SPAN class="punctuation token">.</SPAN>process_file<SPAN class="punctuation token">(</SPAN>image<SPAN class="punctuation token">)</SPAN>
dt <SPAN class="operator token">=</SPAN> str<SPAN class="punctuation token">(</SPAN>exif<SPAN class="punctuation token">[</SPAN><SPAN class="string token">'EXIF DateTimeOriginal'</SPAN><SPAN class="punctuation token">]</SPAN><SPAN class="punctuation token">)</SPAN> <SPAN class="comment token">#get Date Taken from JPG</SPAN>
date <SPAN class="operator token">=</SPAN> time<SPAN class="punctuation token">.</SPAN>strptime<SPAN class="punctuation token">(</SPAN>dt<SPAN class="punctuation token">,</SPAN> <SPAN class="string token">'%Y:%m:%d %H:%M:%S'</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="keyword token">print</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"Photo:{} Date Taken:{}"</SPAN><SPAN class="punctuation token">.</SPAN>format<SPAN class="punctuation token">(</SPAN>fname<SPAN class="punctuation token">,</SPAN> date<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>Photo<SPAN class="punctuation token">:</SPAN><SPAN class="number token">0710100.</SPAN>JPG Date Taken<SPAN class="punctuation token">:</SPAN>time<SPAN class="punctuation token">.</SPAN>struct_time<SPAN class="punctuation token">(</SPAN>tm_year<SPAN class="operator token">=</SPAN><SPAN class="number token">2018</SPAN><SPAN class="punctuation token">,</SPAN> tm_mon<SPAN class="operator token">=</SPAN><SPAN class="number token">6</SPAN><SPAN class="punctuation token">,</SPAN> tm_mday<SPAN class="operator token">=</SPAN><SPAN class="number token">5</SPAN><SPAN class="punctuation token">,</SPAN> tm_hour<SPAN class="operator token">=</SPAN><SPAN class="number token">13</SPAN><SPAN class="punctuation token">,</SPAN> tm_min<SPAN class="operator token">=</SPAN><SPAN class="number token">49</SPAN><SPAN class="punctuation token">,</SPAN> tm_sec<SPAN class="operator token">=</SPAN><SPAN class="number token">40</SPAN><SPAN class="punctuation token">,</SPAN> tm_wday<SPAN class="operator token">=</SPAN><SPAN class="number token">4</SPAN><SPAN class="punctuation token">,</SPAN> tm_yday<SPAN class="operator token">=</SPAN><SPAN class="number token">166</SPAN><SPAN class="punctuation token">,</SPAN> tm_isdst<SPAN class="operator token">=</SPAN><SPAN class="operator token">-</SPAN><SPAN class="number token">1</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
Ideally, I want the output to look as such:
Photo<SPAN class="punctuation token">:</SPAN><SPAN class="number token">0710100.</SPAN>JPG Date Taken<SPAN class="punctuation token">:</SPAN><SPAN class="number token">06</SPAN><SPAN class="operator token">/</SPAN><SPAN class="number token">05</SPAN><SPAN class="operator token">/</SPAN><SPAN class="number token">2018</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN></SPAN>
For line 14, I can't find the right format. I've also tried the datetime module but couldn't get that to work right either.