Nice to meet you. I'm learning Python on my own. I will post it little by little from now on.
** [Why started programming] **
I became interested in programming after the qualification test called G (generalist) test sponsored by the Japan Deep Learning Association (hereinafter referred to as JDLA). Python is often used for artificial intelligence and machine learning, and it was written that it was simple and easy to learn even for beginners, so I decided to learn it first. As a result, I passed the exam, but the content of the exam questions was too difficult, so I took the exam in an air-conditioned room in the summer, but I miss the problem while writing cold sweat. Lol
【code】
This is a simple for statement.
for i in range(5):
print(i)
** [Result] **
0
1
2
3
4
This time, it was my first post, so I made it a simple for sentence. I would like to gradually improve the quality of posts.
see you! !! ** **
Recommended Posts