From dd76c8ff29827e67baafb8483e7f6fba2031208c Mon Sep 17 00:00:00 2001
From: MN4rk <105007614+MN4rk@users.noreply.github.com>
Date: Fri, 6 May 2022 00:39:41 +0700
Subject: [PATCH] Edited test.py
Edited test.py
---
.idea/.gitignore | 3 +++
.idea/gitTraining.iml | 8 ++++++++
.idea/inspectionProfiles/profiles_settings.xml | 6 ++++++
.idea/misc.xml | 4 ++++
.idea/modules.xml | 8 ++++++++
.idea/vcs.xml | 6 ++++++
test (edited).py | 18 ++++++++++++++++++
7 files changed, 53 insertions(+)
create mode 100644 .idea/.gitignore
create mode 100644 .idea/gitTraining.iml
create mode 100644 .idea/inspectionProfiles/profiles_settings.xml
create mode 100644 .idea/misc.xml
create mode 100644 .idea/modules.xml
create mode 100644 .idea/vcs.xml
create mode 100644 test (edited).py
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/gitTraining.iml b/.idea/gitTraining.iml
new file mode 100644
index 0000000..d0876a7
--- /dev/null
+++ b/.idea/gitTraining.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 0000000..105ce2d
--- /dev/null
+++ b/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..d56657a
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..65883cd
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/test (edited).py b/test (edited).py
new file mode 100644
index 0000000..029af10
--- /dev/null
+++ b/test (edited).py
@@ -0,0 +1,18 @@
+'''
+Test python script for Git Training Purposes
+This program is written to ask the user their name and print it in the terminal.
+Before running this program, please fix the three minor issues :)
+After a successful run, please submit a pull request!
+'''
+
+
+def read_input():
+ # Please allow the user to enter their first and last name from the terminal
+ # Hint: We call this a raw input
+ first_name = input("first name = ")
+ last_name = input("last name = ")
+ # Supply the approriate return (We aren't actually returning anything :) )
+ return print('Welcome ', first_name, last_name)
+
+
+read_input()