■ Windows = OS used by Microsoft ■ Unix = the one that is also used on MacOS ■ Linux = open source OS (Unix-like)
Chromium is the open source code of the browser, a Linux-like position in the OS.
Interactive shell (write and execute as it is) ⇆ Text editor (file-like) High-level language (eg Python) ⇆ Low-level language (eg assembly language)
#Used when adding numbers from 0 to any number
#It is also used to turn the for statement 100 times without using x.
for x in range(100):
print( "now" + str(x) + "This is the second process" )
#When deciding the start number and end number and adding them in 1 increments
#1 to 99 in the writing below(Behind n-1)Count up to
for x in range(1,100):
print( "now" + str(x) + "This is the second process" )
#Furthermore, specify a step and count in that step.
#In the case of the following, odd numbers are counted in order because it is in increments of 1 to 2.
for x in range(1,100,2):
print( "now" + str(x) + "This is the second process" )
#You can concatenate with the next line with a backslash.
print\
("Hello,World!")