Skip to content

Commit

Permalink
Create joeg.py
Browse files Browse the repository at this point in the history
  • Loading branch information
joegeorge022 authored Nov 12, 2024
1 parent fab16f6 commit e04a363
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Day-1/joeg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
full_name = "Joe George"
age = "18"
is_student = True

print(f"Hello {full_name}!")
print(f"Your name is {full_name} and you are {age} years old.")
print(f"Are you a student? Ans: {is_student}")

if is_student:
print("He is a student")
else:
print("He is not a student")

0 comments on commit e04a363

Please sign in to comment.