Skip to content
Snippets Groups Projects
Commit bc92316b authored by Bodor Máté's avatar Bodor Máté
Browse files

v0.20

parent 6c42d5ff
No related branches found
No related tags found
No related merge requests found
...@@ -264,28 +264,6 @@ print ('Have a ') ...@@ -264,28 +264,6 @@ print ('Have a ')
print ('nice day!') #Bye bye print ('nice day!') #Bye bye
``` ```
+++
```python
'''This is the start of the program '''
x = 1
while (x < 6):
print() # prints a new line
print ("x = " + str(x)) # the , forces printing of the next item
# to be on the same line
x = x + 1
y = 1
while (y < 6):
print ("y = " + str(y),) # the , forces printing on the same line
y = y + 1
z = 1
while (z < 6):
print ("z = " + str(z),) # the , forces printing on the same line
z = z + 1
print() # prints a new line
```
Note: Note:
- Nincs sorvég jel - Nincs sorvég jel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment