User Tools

Site Tools


software_carpentry

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

software_carpentry [2013/06/01 14:37]
sandeep
software_carpentry [2018/03/24 11:13]
Line 1: Line 1:
-=====Basic===== 
-=====Editors==== 
-  - Create a file using cat with all the names of your friends. 
-  - Concatenate the file with some other names 
-  - Search for a name in the file using sed 
-  - Replace a name with another using sed. Redirect it to another file name. 
-  - Search for the name in the file using Nano 
-  - Write a Hello world program in emacs 
-  - Split the windows in emacs  
-  - Find out copy and paste in emacs. Also, about M-x increase-left-margin 
- 
-=====Python===== 
-  - Find out the area of a rectangle with length = 10 and breadth = 20 
-  - Find the maximum number in [1,​30,​99,​43,​21] 
-    - Check what max(list) does 
-  - Implement Linear search using lists 
-    - Take a list, implement a loop such that the program prints the index of a particular item in the list. 
-  - Take a string using raw_input and replace all a's in the string with b's 
-  - Take a string using raw_input and check if it is a palindrome 
-    - Check [[python_reference#​string_reverse|reversed]] 
-  - Make an English to telugu dictionary with 10 english words as the keys and telugu words as values. Now, make some strings with the dictionary ​ 
-  - Print this  
-<​code>​ 
-P 
-Py 
-Pyt 
-Pyth 
-Pytho 
-Python 
-</​code>​ 
- 
-  - Take an input from the user which can be "​heads"​ or "​tails"​. Now, get a random number which is 0 and 1 from python using [[python_reference#​random|random]]. Print "​Success"​ if input is heads and the random number is 0 or if input is tails and random number is 1. Else, print "​Fail"​ 
-  - A program that prints "​Panagram"​ if a given sentence is a pangram (A pangram is a sentence that contains all the letters of the English alphabet at least once, for example: The quick brown fox jumps over the lazy dog. Your task here is to write a function to check a sentence to see if it is a pangram or not. ) 
  
software_carpentry.txt ยท Last modified: 2018/03/24 11:13 (external edit)