Day 030 - Project 30 : Reflection Journal

If you have any questions, comments or issues with this project please post them here!

Reflecting on my amazing work from the last 30 days. Created a reflection journal :notebook:.

https://replit.com/@JackAdem/Day-030-Project-30-Reflection-Journal?v=1

Day 30 of #Replit100DaysOfCode #100DaysOfCode.

2 Likes
print("30 Days Down \n")
for i in range(1,31):
  user=input(f"Day {i}: \n")
  qw = ("You thought Day {i} was {user}".format(i=i, user=user))
  print(f"{qw: ^}")

how should i make the text in the middle

Welcome to the community! Can you please elaborate on your problem and format your code in three backticks?

```[language]
[your code here]
```
# Example using Python
print("Hello world!")
1 Like
```[python]
[print("30 Days Down \n")
for i in range(1,31):
  user=input(f"Day {i}: \n")
  qw = ("You thought Day {i} was {user}".format(i=i, user=user))
  print(f"{qw: ^}")]

@anon40284853 I have done it

Helpppp! @LessonHacker

Can you please explain what this means?

@DukeTI Try using center() » Python String center() Method

1 Like