Posts

Showing posts from June, 2024

Overall company coding pratics with full concepts in python language.

Image
RAVI KUMAR SINGH                                     DAY :01                                 🔰 # guess the output data={} print(type(data)) # eska output disconary aayega. 🔰 #Guess the output of the code. a=set() print(a) # yah empty set ko generate krega. 🔰 #Guess the output of the code. print(-10//3)# yaha flwer division ho rha hai. # eska output -4 aayega kyuki jb 3 se divide krenge to -3aur-4 but near me -4 hoga aur near wale ko flower bolte hai aur dur bale ko ceil bolte hai. print(10//3) # output 3 aayega print(20//5) # output 4 aayega. # ye sabhi flower division ke example the . 🔰 # print the below output. # "python uses \n for new line" print( ' "python uses \\n for new line" ') # eska output same aayega 🔰 #print the output below # /\/\/\/\ print('/\\/\\/\\/\\')# yadi 3 back slash cheia to 6 back slash...

SQL QUARY EXAMPLES

  Enter password: ****** Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 38 Server version: 8.0.37 MySQL Community Server - GPL Copyright (c) 2000, 2024, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> SHOW DATABASES; +-------------------------+ | Database                | +-------------------------+ | aktu_ka_database        | | college_ka_database     | | dosti                   | | information_schema      | | jai_bajgrang_bali_ka_db | | kishan_ka_database      | | library                 | | library_ka_database     | | mys...