--> Python Syntax 3- Alpha Codist | Alpha Codist

Search This Blog

Python Syntax 3- Alpha Codist

programming, java, software, PHP, C programming, programming languages, visual, Pascal, Perl, XML program, UNIX, cyber program, C++, HTML, CSS, Python syntax, software, what is computer, programming, programming languages, computer programming, what is coding, what is programming, contract programming, need a programmer, cyber program, tmbmnadim, Alpha Codist, python, Alpha Codist, blogger,

programming, java, software, PHP, C programming, programming languages, visual, Pascal, Perl, XML program, UNIX, cyber program, C++, HTML, CSS, Python syntax, software, what is computer, programming, programming languages, computer programming, what is coding, what is programming, contract programming, need a programmer, cyber program, tmbmnadim, Alpha Codist, python, Alpha Codist, blogger,
Python Syntax 3- Alpha Codist
Name of syntax What it does Example Execute
nameofliist.sort() To sort items in ascending order n = [1, 4, 6, 7, 9]
n.sort()
print(n)
[1, 4, 6, 7, 9]
nameofliist.reverse() To sort items in descending order o = [1, 4, 6, 7, 9]
o.sort()
o.reverse()
print(o)
[9, 7, 6, 4, 1]
() Parenthesis To create a tuple. It is almost the same as a list. Just you can not edit it from outside. But you can read data from outside.  print('') # for a space between line
p = ("alpha codist", "Corona Attack", 6, 9, 8)
# -->> p.append("Corona Attack is a game") # This returns error
print(p)
 ('alpha codist', 'Corona Attack', 6, 9, 8)
def To define a function.   def alphacodist():
print("Alpha Codist is the best...")
alphacodist()
 Alpha Codist is the best...
 {} To create a dictionary  print('') # for a space between line
q = {
"Easy": 5,
"Normal": 10,
"Hard": 15
}
print(q["Easy"])
 
 5
 range()  to get a range.  print('') # for a space between line
for r in range(0, 9):
print(r)
 
0
1
2
3
4
5
6
7
8
 quit() to quit code.  print("Want to quit??")
quit()
print("I called quit!!!")
 Want to quit??
 return  To return something.  def alpha():
s = "Alpha Codist is the best..."
return s

print(alpha())
 Alpha Codist is the best...


COMMENTS

Name

beeCrowd,11,C,10,Computer,9,Downloads,3,HTML,1,My Creation,2,Python,24,Python-Soft,1,Shooting,2,
ltr
item
Alpha Codist: Python Syntax 3- Alpha Codist
Python Syntax 3- Alpha Codist
programming, java, software, PHP, C programming, programming languages, visual, Pascal, Perl, XML program, UNIX, cyber program, C++, HTML, CSS, Python syntax, software, what is computer, programming, programming languages, computer programming, what is coding, what is programming, contract programming, need a programmer, cyber program, tmbmnadim, Alpha Codist, python, Alpha Codist, blogger,
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisvW9ZjhjmtUY2YfKhaq-Y5pE4EFWjGAkdyVRTN62J4pXx64OsXm5SLRYRbICN6YTjkvKIGOD-hB_Twe55VGxTCP_wCjjme7GwrlZChyphenhyphenkDplIDOmKFUlX1h78R1Ch9skLDp5sthnWhhcmb/s640/logo-01.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisvW9ZjhjmtUY2YfKhaq-Y5pE4EFWjGAkdyVRTN62J4pXx64OsXm5SLRYRbICN6YTjkvKIGOD-hB_Twe55VGxTCP_wCjjme7GwrlZChyphenhyphenkDplIDOmKFUlX1h78R1Ch9skLDp5sthnWhhcmb/s72-c/logo-01.png
Alpha Codist
https://alphacodist.blogspot.com/2020/05/pythonsyntax3.html
https://alphacodist.blogspot.com/
https://alphacodist.blogspot.com/
https://alphacodist.blogspot.com/2020/05/pythonsyntax3.html
true
7547834254111195316
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content