File tree Expand file tree Collapse file tree 6 files changed +35
-0
lines changed
part1/reverse-string/reverse_ni8mr Expand file tree Collapse file tree 6 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ import re
2+
3+ my_string = raw_input ("Enter your string: " )
4+ a = re .split ('; |, |\*|\n ' , my_string )
5+
6+ for i in
Original file line number Diff line number Diff line change 1+ {% extends "index.html" %}
2+
3+ {% block content %}
4+
5+ < div class ="container ">
6+ < h1 > Entry your posts here.</ h1 >
7+ < form >
8+
9+ {% endblock %}
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+
3+ < html >
4+ < head >
5+ < title > Flask - Behavior Driven Development</ title >
6+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7+ < link href ="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css " rel ="stylesheet " media ="screen ">
8+ </ head >
9+ < body >
10+ < div class ="container ">
11+ <!-- inheritance -->
12+ {% block content %}
13+ {% endblock %}
14+ <!-- end inheritance -->
15+ </ div >
16+ < script src ="http://code.jquery.com/jquery-1.11.0.min.js "> </ script >
17+ < script src ="http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js "> </ script >
18+ </ body >
19+ </ html >
20+
File renamed without changes.
You can’t perform that action at this time.
0 commit comments