Day 1 of 100

Published: (December 31, 2025 at 11:56 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

Day 1 – Getting Started with Python

Setup

I started off today by downloading Python and PyCharm and setting it up.

Practicing the Basics

After that, I practiced:

  • print statements
  • String concatenation and manipulation
  • Using the input function

Seeing how I had learned Python basics a few years back, this was quite easy.

Building a Simple Story Generator

I then moved on to learning about variables and built a basic script that generates a story based on user inputs (place, name, object, animal, toy, and plant).

Back to Blog

Related posts

Read more »

Sandboxing Untrusted Python

Article URL: https://gist.github.com/mavdol/2c68acb408686f1e038bf89e5705b28c Comments URL: https://news.ycombinator.com/item?id=46500510 Points: 11 Comments: 1...

Variable in Java

Variable - A variable is the name of a memory location. - A variable is used to store a value. - The value of a variable can change during program execution. R...