0

WSQ11 – Yo soy 196

Hi this time I’m posting WSQ11 a work about Lychrel Numbers to be honest it was for me the most difficult WSQ ever, because it took me like 3 weeks to understand what I was suppose to do, but after see many pages and read a lot about Lychrel number, I finally understand everything, so here I left me code for future references.

Here’s a photo of me when I realized what I was suppose to do.

Taken from Exdarken User of Taringa!

0

Create a Python Project (Inside IDLE) / Use of comments in Python 3!

Hi everyone to create a Python Project you first have install and configure Python 3 use the following link if you haven’t do it yet, CONFIGURE PYTHON 3

The first step is look for IDLE in windows search.

Mastery#2-Image01

Open IDLE, as soon as it opens you are going to see the interactive shell of Python but this isn’t what we looking for; To begin click in FILE>NEW FILE or you can also use Ctrl + N now you have a blank space to work on it.

Mastery#2-Image02

Over here you can write again Hello World with print() function but this time we’ll add a comment

In Python 3 comments are put after a  #, so for example if you want to write a comment that says “this will print hello world!” you must type something like the following:

#This will print hello world!

So remember always use before any comment you want to use.

Here’s an example.

Mastery#2-Image03

Finally to run our mini Python 3 project we just have to press F5 and then automatically the Python IDLE will run the code in the interactive shell, when you type a comment it never appears in the program, they are just for human references.

After press F5

Mastery#2-Image04