Python Basics to Start Programming Flashcards
What are docstrings in python ?

Multiple line comments enclosed within triple quotation marks are docstrings.
“””
This is an dockstring
“””
How to use python comments ?
Two Methods,
- for single line comments use # symbol.
- for multiline comments use docstrings.
How to use python comments ?
Two Methods,
- for single line comments use # symbol.
- for multiline comments use docstrings.
How numbers start in python ?
Number in python should be starts with number 0-9 > 1,10
,decimal sighn > .1 , .326
,or hypen sighn > -22
How to write strings in python ?
Single qoutes & double quotes are used
“Hi there, I am a string”
‘Hello world’
If string contains single quotes also,then enclose this in double quotes,if a string contains double quotes then enclosed it in single quotes. if a string contains both then use escape character.
“Mary’s dog said Woof”
‘The dog of Mary said “Woof”.’
‘Mary's dog said “Woof”.’
“Mary’s dog said "Woof".”
How to add line break in python string ?
Two Methods:
- Use Escape Sequence with n
- Use Tripple Quotatin Marks
string1 = “Hemant \nPinky\n Bella”
string2 = “"”Hemant
Pinky
Bella”””
print(string1)
print(string2)
How many Data Types in Python ?
- Four Data Types in Python.
- Integer
- Float
- String
- Boolean
How many Arithmatic Operators in Python ?
Total Seven Operators.
- Addition 1 + 1 = 2
- Subtraction 10 - 1 = 9
- * Multiplication 3 * 5 = 15
- / Division 10 / 5 = 2
- % Modulus (remainder after division) 11 % 5 = 1
- ** Exponent 3**2 = 9
- // Floor division 11 // 5 = 2
How many comparison operators in python ?
Total Eight Operators
Operator Meaning
< Less than
<= Less than or equal to
> Greater than
>= Greater than or equal to
== Equal to
!= Not equal to
is Object identity
is not Negated object identity
How Many Boolean Operators in Python ?
Total Three
or x or y Either x or y is True
and x and y Both x and y are True
not not x x is not True
Python Variable Creation Rules ?
- Variable Name must be starts with letter or underscore.
- After first character you use letters,underscores or numbers.
- Variables are case sensitive.
- PEP 8 style conventions recommend that you use only lowercase letters in variable names.
What is the acronym of IEEE?
Institute of Electrical and Electronics Engineers.
Which Languages are popular for Data Science ?
Julia and R languages are very much popular in Data Science.
How to Show dollar Amount with string?
price = 2345
print(f”${ price:,}”)
How to save multiline format strings in varible ?
Two Methods
- Use Escape Sequence
- Use Tripple Quotation Marks
user1 = "hemant" user2 = "Pinky" user3 = "Bella" allUsers = f"{user1}\n{user2}\n{user3}"
print(allUsers)
allUsers = f”””
User1 - {user1}
User2 - {user2}
User3 - {user3}”””
print(allUsers)
How to use multiline f-string to show integer variables ?
Tripple Quotation marks are used.
unitPrice = 24
quantity = 100
saleTaxRate = .65
subTotal = quantity * unitPrice
saleTax = subTotal * saleTaxRate
total = subTotal + saleTax
outPut = f”"”Subtotal : Rs. {subTotal:,}
SaleTax : Rs. {saleTax:,}
Total : Rs. {total:,}”””
print(outPut)
What is the Base of the binary, octal, hexadecimal number system, and digits used in each number system?
- Binary - Base 2 : 0,1
- Octal - Base 8 : 0,1,2,3,4,5,6,7
- Decimal - Base 10 0,1,2,3,4,5,6,70,1,2,3,4,5,6,7,8,9
- Hexadecimal - Base 16
0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F
How to convert a number to another number system in python ?
We have to use three Functions,oct(),bin(),hex() .
print(oct(x)),
print(bin(x)),
print(hex(x))
print(“Hexa: “,0xff)
print(“Binary: “,0b1111)
print(“Octal:”,0o377)
How to concatenate firstName lastName variables ?
Two Methods :
- save firstName & lastName Variables in other variable then print .
- print firstName & lastName Variables using print() function
firstName = “Hemant”
lastName = “ Kumar”
fullName = firstName + lastName
print(“Full Name :”,fullName)
print(“Full Name :”,firstName + lastName)
How to set width & align in f-string ?
print(f”fullName:>9”)
You can control the width of your output (and the alignment of content within that width)
by following the colon in your f-string with
< (for left aligned),
^ (for centered),
or > (for right aligned).
firstName = “First”
middleName = “Middle”
lastName = “Last”
print(firstName,middleName,lastName)
print(f”{firstName}”,f”{middleName:^10}”,f”{lastName:}”)
How to Conactenate dollor sign with integer value ?
Two Methods :
- Use print Function.
- Save integer value in string variable by using f-strings.
unitPrice = 23 quantity = 34 salesTaxRate = .54 subTotal = quantity \* unitPrice salesTax = subTotal \* salesTaxRate baseTotal = subTotal + salesTax s\_subTotal = "$" + f"{subTotal:,.2f}" s\_baseTotal = "$" + f"{baseTotal:,.2f}" s\_salesTax = "$" + f"{salesTax:,.2f}"
output = f”””
Sub Total : {s_subTotal:>9}
Sales Tax : {s_salesTax:>9}
Total : {s_baseTotal:>9}
“””
print(output)
print(f”Unit Price:${unitPrice}\nQuantity:{quantity}\nSale Tax: ${salesTax:.2f}\nTotal: ${subTotal}”)
print(“Unit Price:$”,unitPrice,”\nQuantity:”,quantity,”\nSale Tax: $”,salesTax,”\nTotal: $”,subTotal)
How to Get Length of String ?
Using len() Function ?
string1 = “” string2 = “ ” string3 = “Thjs is an string”
print(len(string1))
print(len(string2))
print(len(string3))
List some string Functions ?
len()
How to search a particular character in string ?
We have to use print() Function,it returns True or False value ?
s = "Abracadabra Hocus Pocus you're a turtle dove" #print True if t found in s print("t" in s) #print False if t not found in s print("t" not in s)
How to print first character of string ?
We have to use string subscript.
string = “Hemant”
print(string[0])
How to print 15 hyphens in a row ?
print(“-“ * 15)
How to print string characters from 0 to 10 ?
s = “Abracadabra Hocus Pocus you’re a turtle dove”
print(s[0:10])
How to Print every third char of string from 0 to 10 ?
s = “Abracadabra Hocus Pocus you’re a turtle dove”
print(s[0:20:2])
How to print Largest character of string ?
Use max(s) function,it returns largest character of string by its ASCII Value .
s = “Abracadabra Hocus Pocus you’re a turtle dove”
print(max(s))
How to print the smallest character of string ?
This prints nothing because it detects spaces
s = “Abracadabra Hocus Pocus you’re a turtle dove”
print(min(s))
How to find the index value of character in string?
s = “Abracadabra Hocus Pocus you’re a turtle dove”
print(s.index(“H”))
How to know number of occurencs of H in String ?
s = “Abracadabra Hocus Pocus you’re a turtle dove HHHHHHHH”
print(s.count(“H”))
How to know the index value of H in given range of string ?
s = “Abracadabra Hocus Pocus you’re a turtle dove HHHHHHHHZ”
print(len(s))
print(s.index(“H”,13,50))
How to print ASCII Value of character ?
Using ord() function ? s = "Abracadabra Hocus Pocus you're a turtle dove HHHHHHHHZ"
print(ord(“A”))
How to print character of ASCII Value ?
s = “Abracadabra Hocus Pocus you’re a turtle dove HHHHHHHHZ”
print(chr(65))
How to Create Keyboard Shorctcut for running python code in vsCode ?
Goto File → Preferences → Keyboard Shortcuts
Type run python in terminal and Click the Python: Run Python File in Terminal.
Now create a kyboard shortcut sequence that works for you.
Source : https://jasonmurray.org/posts/2020/vscodeplay/
How to use Escape Sequence in String ?
string4 = 'This is Hemant\'s Place' string5 = "This is \"Hemant\""
print(string4)
print(string5)
How to import date module ?
import datetime as dt
How to save today’s date in variable ?
import datetime as dt
todayDate = dt.date.today()
date = dt.date(2019,12,31)
print(todayDate);print(date)
How to create a Date object ?
import datetime as dt
date = dt.date(2019,12,31)
print(todayDate);print(date)
How to date object values separately ?
import datetime as dt
date = dt.date(2019,12,31)
print(date.month)
print(date.day)
print(date.year)
How to format date object output to display date ?
import datetime as dt
todayDate = dt.date.today()
date = dt.date(2019,12,31)
print(f”{date:%A, %B %d, %Y}”)
How to show Date in DD YY format ?
import datetime as dt
today = dt.date.today()
todays_date = f”{today:%d/%m/%Y}”
print(todays_date)
How to know the class of variable ?
import datetime as dt
today = dt.date.today()
print(type(today))
How to save midnight time in variable and print ?
import datetime as dt
date = dt.time()
print(date)
print(type(date))
How to calculate time spans ?
import datetime as dt
newYearDay = dt.date(2019,1,1)
memorialDay = dt.date(2019,5,27)
print(memorialDay - newYearDay)
How to print extended date by adding days to current date ?
import datetime as dt
uration = dt.timedelta(days=146)
todayDate = dt.datetime.today()
extendedDate = todayDate + duration
print(f”Today’s Date = {todayDate:%a, %b %d %Y}”)
print(“Extended Date = “,f”{extendedDate:%a, %b %d %Y}”)
How to Claculate your age in python ?
import datetime as dt
dob = dt.date(1983,6,1)
todayDate = dt.date.today()
deltaAge= todayDate - dob
daysOld = deltaAge.days
print(f”DOB = {dob}”)
print(f”Today’s Date = {todayDate}”)
print(f”Your are {daysOld // 365} Years & “ f”{(daysOld % 365) // 30} Months Old “ f”on {todayDate}”)
How many types of Arithmetic Operators are in Python,
list them in order of precedence?
Total Nine,Precedence is PEMDAS
1 - () grouping
2 - **exponent
3 - –negation
4 - *multiplication
5 - /division
6 - %modulus
7 - //floor division
8 - +addition
9 - –subtraction
How many types of Comparison Operators are in Python ?
Total Six Comparison Operators.
1 - == equal to
2 - != not equal to
3 - > greater than
4 - < less than
5 - >= greater than or equal to
6 - <= less than or equal to
How many types of Boolean Operators ?
Total Three
1 - and logical and
2 - or logical or
3 - not logical not
When was Python language created?
It was created by Guido Van Rossum in 1991.
How to print Python Keywords?
import keyword
print(keyword.kwlist)
How to check string value in Python?
sun = ‘down’
if sun == ‘down’ :
print(‘Good Night’)
How to Check Boolean Variable Value ?
taxable = True
if taxable :
print(‘Amount is Taxable’)
How to Create date variable in Python ?
import datetime as dt
myBirthday = dt.date(1983,3,11)
print(f”YYYY-MM-DD - {myBirthday}”)
Format String Examples
print(f”Subtotal: ${quantity * unit_price:,.2f}”) # round off to two decimal points
print(f”Sales Tax Rate {sales_tax_rate:.2%}”) # shows in two decimal digits
print(f”Subtotal: ${quantity * unit_price:,}”) # shows comma in thousand