Showing posts from September, 2023
While loop in python practice

While loop in python practice

while(True):     print("Enter the number :- ")     n1 = int(input())     if(n1>100):         print("…

Read Now
Comments in python

Comments in python

import flask; print("Comment in python") print("Single line comment below ") # This is the signle …

Read Now
List and table in html

List and table in html

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <…

Read Now
Capitalised word in mysql

Capitalised word in mysql

SELECT CONCAT(     UPPER(SUBSTRING(word, 1, 1)),     LOWER(SUBSTRING(word, 2, LENGTH(word) - 1)),     IF(LOCATE(' …

Read Now
Pseudo selector in css

Pseudo selector in css

Pseudo selector:- <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo…

Read Now
Lambda function in python

Lambda function in python

Lambda function :- # Online Python compiler (interpreter) to run Python online. # Write Python 3 code in this online e…

Read Now
guess the number in python

guess the number in python

n = 20 attempt = 0 number_of_attempt_left = 9 while ( attempt < 9 ):     print ( "Enter your number :- …

Read Now
media query in css

media query in css

<! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8&qu…

Read Now
Link and image in html

Link and image in html

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <…

Read Now
operattor in python

operattor in python

# print("+",5+5) # print("-",5-5) # print("/",5/5) # print("*",5*5) # print(&…

Read Now
flex or flex box in css

flex or flex box in css

<! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8&qu…

Read Now
with open in the python

with open in the python

# file open to the with block and the y will handle file file and self close the file with open ( "test.txt&quo…

Read Now
star print using python

star print using python

print ( "Enter number one?" ) num1 = int ( input ()) print ( "Enter pattern is asc - 1 or desc - 0&q…

Read Now
Load More That is All