Skip to content

Commit cc3e21d

Browse files
committed
Just refoctoring
1 parent fceb19f commit cc3e21d

File tree

6 files changed

+35
-0
lines changed

6 files changed

+35
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+

part2/reverse_flask_reza/run.py

Whitespace-only changes.

part2/reverse_flask_reza/test.py

Whitespace-only changes.

0 commit comments

Comments
 (0)